Functions
newmenus.inc
| Function | Type | Description |
|---|---|---|
| menu_addblank | native | Adds a blank line to a menu. |
| menu_addblank2 | native | Adds a blank line to a menu, always shifting the numbering down. |
| menu_additem | native | Adds an item to a menu. |
| menu_addtext | native | Adds a text line to a menu. |
| menu_addtext2 | native | Adds a text line to a menu, always shifting the numbering down. |
| menu_cancel | native | Cancels a player's menu, effectively forcing the player to select MENU_EXIT. The menu will still exist on their screen but any results are invalidated, and the callback is invoked. |
| menu_create | native | Creates a new menu object. |
| menu_destroy | native | Destroys a menu. Player menus will be cancelled (although may still linger on the HUD), and future attempts to access the menu resource will result in an error. This must be called if you create menus dynamically, otherwise you will leak memory. For normal dynamic menus, you will destroy the menu in the handler function (remembering to handle the case of a menu being cancelled, it must still be destroyed). |
| menu_display | native | Displays a menu to one client. This should never be called from a handler when the item is less than 0 (i.e. calling this from a cancelled menu will result in an error). Starting with 1.8.3 this allows to specify a menu timeout similar to the show_menu native. If the menu exists on the client past the timeout *any* further action will send the MENU_TIMEOUT status code to the menu handler. That includes actions which would otherwise send MENU_EXIT, such as the client selecting an item or disconnecting and calling menu_cancel or menu_destroy on a live menu. |
| menu_find_id | native | Given a page on a menu and a keypress on that page, returns the item id selected. If the item is less than 0, a special option was chosen (such as MENU_EXIT). |
| menu_item_getinfo | native | Retrieves info about a menu item. |
| menu_item_setaccess | native | Sets an item's access. |
| menu_item_setcall | native | Sets an item's callback. |
| menu_item_setcmd | native | Sets an item's info string. |
| menu_item_setname | native | Sets an item's display text. |
| menu_items | native | Returns the number of items in a menu. |
| menu_makecallback | native | Creates a menu item callback handler. |
| menu_pages | native | Returns the number of pages in a menu. |
| menu_setprop | native | Sets a menu property. |
| player_menu_info | native | Returns information about a menu (if any) the client is currently viewing. |