View Single Post
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 06-24-2016 , 10:45   Re: Simple Menu Builder
Reply With Quote #5

Quote:
Originally Posted by HamletEagle View Post
I would like to get some feedback from regular users.
This looks similar to the 'custommenuitems.cfg' I use from the AMXX.
Code:
// 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>"
//
// 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 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.)
// <plugin name>: This must be the _exact_ (though case insensitive) name of the plugin which holds the menu command. (Use "amxx plugins" in server console, plugin names are listed in Name column.)
//
// Example: (be sure to use quotes around parameters with spaces!)
//
// amx_addmenuitem "Weapon Arena" "weaponarena_menu" "hu" "Weapon Arena"
// amx_addclientmenuitem "Warcraft 3" "war3menu" "" "Warcraft 3 XP"
//
amx_addclientmenuitem "Commands" "say /comandos" "" "Server Rules"
amx_addclientmenuitem "Rules" "say /regras" "" "AMXX Public server rules"
amx_addclientmenuitem "Fake C4" "amx_fakec4" "" "Fake C4"
amx_addclientmenuitem "Open Jail" "open_jail" "" "Jail Opener"
amx_addclientmenuitem "Radio Menu" "say /hlmp" "" "HL Media Player"
amx_addclientmenuitem "Mp3 Menu" "say /mp3" "" "Mp3 Player"
amx_addclientmenuitem "Voteban Menu" "say /voteban" "" "voteban menu"
amx_addclientmenuitem "Warcraft 3" "war3menu" "" "UWC3"
1) The difference is that to open it you basically need to use 'amx_menu' on console, and this one you can personalize more easily.
2) The next, previous and menu's titles uses the AMXX multilingual, on this one you need to type them.
3) The 'custommenuitems.cfg' is just one menu, but this plugin can create more than one.
4) This has the disadvantage against the 'custommenuitems.cfg', to do not disable the menu option when the plugin is not running.

So, looks like this plugin is somehow useful and could be easily used by non-coders allowing creating more menus than 'AMXX Menu Generator v1.3'.
__________________
Plugin: Sublime Text - ITE , Galileo
Multi-Mod: Manager / Plugin / Server

Support me on Patreon, Ko-fi, Liberapay or Open Collective

Last edited by addons_zz; 06-24-2016 at 21:10. Reason: misspelling
addons_zz is offline