note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
GetPlayerMenu
Description
Gets the ID of the menu the player is currently viewing (shown by ShowMenuForPlayer).
Name | Description |
---|---|
playerid | The ID of the player to get the current menu of. |
Returns
The ID of the player's currently shown menu, or INVALID_MENU
(255) if no menu shown.
Value returned is tagged with Menu:
Examples
new Menu:currentMenu = GetPlayerMenu(playerid); // Store the player's current menu in 'CurrentMenu'
Notes
tip
Returns previous menu when none is displayed.
Related Functions
- ShowMenuForPlayer: Show a menu for a player.
- HideMenuForPlayer: Hide a menu for a player.
- CreateMenu: Create a menu.
- DestroyMenu: Destroy a menu.
- AddMenuItem: Add an item to a menu.
Related Callbacks
- OnPlayerSelectedMenuRow: Called when a player selected a row in a menu.
- OnPlayerExitedMenu: Called when a player exits a menu.