HideMenuForPlayer
From SA-MP Wiki
Description:
Hides a menu for a player.
(menuid, playerid)
menuid | The ID of the menu to hide. Returned by CreateMenu and passed to OnPlayerSelectedMenuRow. |
playerid | The ID of the player that the menu will be hidden for. |
Return Values:
- 1: The function executed successfully.
- 0: The function failed to execute.
Example Usage:
if(strcmp(cmdtext, "/menuhide", true) == 0) { new Menu:myMenu = GetPlayerMenu(playerid); HideMenuForPlayer(myMenu, playerid); return 1; }
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- ShowMenuForPlayer: Show a menu for a player.
- AddMenuItem: Add an item to a menu.
- SetMenuColumnHeader: Set the header for one of the columns in a menu.
- CreateMenu: Create a menu.