Ugrás a fő tartalomhoz

CreateMenu

Description

Creates a menu.

NameDescription
const title[]The title for the new menu.
columnsHow many colums shall the new menu have.
Float:xThe X position of the menu (640x460 canvas - 0 would put the menu at the far left).
Float:yThe Y position of the menu (640x460 canvas - 0 would put the menu at the far top).
Float:column1widthThe width for the first column.
Float:column2widthThe width for the second column.
OPEN_MP_TAGS:...Indefinite number of arguments of any tag.

Returns

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

Examples

new Menu:exampleMenu;

public OnGameModeInit()
{
exampleMenu = CreateMenu("Example Menu", 2, 200.0, 100.0, 150.0, 150.0);
return 1;
}

Notes

tanács
  • 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.
vigyázat

There is a limit of 12 items per menu, and a limit of 128 menus in total.