Updated for amx_menu...

This commit is contained in:
Johnny Bergström 2005-01-16 22:24:36 +00:00
parent 53188ab941
commit 4a823a0894

View File

@ -1,8 +1,12 @@
// File location: $moddir/addons/amxmodx/configs/custommenuitems.cfg
// Here you can add menu items from any plugin to Menus Front-End plugin, aka "amxmodmenu". // Here you can add menu items from any plugin to Menus Front-End plugin, aka "amxmodmenu".
// You can also add menu items to the normal non-admin client menu "amx_menu".
// //
// Adding to "amxmodmenu":
// Usage: "amx_addmenuitem <menu text> <menu command> <access flags> <plugin name>" // Usage: "amx_addmenuitem <menu text> <menu command> <access flags> <plugin name>"
// //
// Adding to "amx_menu":
// Usage: "amx_addclientmenuitem <menu text> <menu command> <access flags> <plugin name>"
//
// <menu text>: This is the text displayed in the menu itself for this item. // <menu text>: This is the text displayed in the menu itself for this item.
// <menu command>: This is the client command used to access the menu. // <menu command>: This is the client command used to access the menu.
// <access flags>: Specify what access flags admins must have to use this menu item. (Check users.ini for access flags.) // <access flags>: Specify what access flags admins must have to use this menu item. (Check users.ini for access flags.)
@ -11,4 +15,5 @@
// Example: (be sure to use quotes around parameters with spaces!) // Example: (be sure to use quotes around parameters with spaces!)
// //
// amx_addmenuitem "Weapon Arena" "weaponarena_menu" "hu" "Weapon Arena" // amx_addmenuitem "Weapon Arena" "weaponarena_menu" "hu" "Weapon Arena"
// amx_addclientmenuitem "Warcraft 3" "war3menu" "" "Warcraft 3 XP"