CreateMenu

CreateMenu

Description:
Function CreateMenu creates a menu.
  • This function merely CREATES the menu - ShowMenuForPlayer must be used to show it.
  • You can only create and access 2 columns (0 & 1).
  • If the title's length is equal to or greater than 32 chars the title is truncated to 30 characters.
There is a limit of 12 items per menu, and a limit of 128 menus in total.


Parameters:
(title[], columns, Float:x, Float:y, Float:col1width, Float:col2width)
int title The title for the new menu.
string columns How many colums shall the new menu have.
float X The X position of the menu (640x460 canvas - 0 would put the menu at the far left).
float Y The Y position of the menu (640x460 canvas - 0 would put the menu at the far top).
float col1width The width for the first column.
float col2width The width for the second column.


Return Values:
The ID of the new menu or -1 on failure.


Examples:
new Menu:examplemenu;
 
public OnGameModeInit()
{
    examplemenu = CreateMenu("Your Menu", 2, 200.0, 100.0, 150.0, 150.0);
    return 1;
}


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


Related Callbacks
The following callbacks might be useful as well, as they are related to this callback in one way or another.