DisableMenu

From SA-MP Wiki

Jump to: navigation, search


Disable a menu.


Parameters:
(Menu:menuid)
Menu:menuidThe menu to disable.


ReturnsThis function doesn't return a specific value


new WeaponMenu;
 
WeaponMenu = CreateMenu("Weapons", 1, 50.0, 180.0, 200.0, 200.0);
AddMenuItem(WeaponMenu, 0, "Rocket Launcher");
AddMenuItem(WeaponMenu, 0, "Flamethrower");
AddMenuItem(WeaponMenu, 0, "Minigun");
AddMenuItem(WeaponMenu, 0, "Grenades");
if(!strcmp(cmdtext, "/disableguns", true)) 
{
    DisableMenu(WeaponMenu); //Disable the weapon menu
    return 1;
}

Related Functions

The following functions may be useful, as they are related to this function in one way or another.

Personal tools
In other languages