AMXMODMENU?

Member
✔️ HL Verified
🚂 Steam Linked
🍂 Regular
Joined
Aug 30, 2010
Messages
261
Best answers
0
This is how it should look like

AMX MOD X MENU

1.kick player
2.ban player
3.slap/slay player
4.team player
5.changelevel
6.vote for maps
7.speech stuff
8.client commands

This works fine with my original esf but since ive had ecx installed all i get is this..

AMX MOD X MENU

#.kick player
#.ban player
#.slap/slay player
#.team player
#.changelevel
#.vote for maps
#.speech stuff
#.client commands

Therefore I'm unable to select any of these options. Is ECX not compatible with AMXMODMENU? Or do i need to do something differently?


Also, on the second page of the command menu im able to choose the language settings but that is all.

Thanks in advance for the help!
 
Last edited:

ewl

SSB Member
✔️ HL Verified
🌟 Senior Member
Joined
Dec 31, 2011
Messages
42
Best answers
0
AmxModX (AmxModMenu command) work with ECX. Try to update AmxModX.
 
Member
✔️ HL Verified
🚂 Steam Linked
🍂 Regular
Joined
Aug 30, 2010
Messages
261
Best answers
0
I'm using the latest version with all the base files.
 
YEA
✔️ HL Verified
Joined
Oct 31, 2014
Messages
201
Best answers
0
Location
CHINA
its due to the related plugins has lost. This amxmenu plugin is named "menufront.amxx", below it is a part of the plugin's script:

AddDefaultMenus()
{
new flags;
AddMenuLang("KICK_PLAYER", "amx_kickmenu", get_clcmd_flags("amx_kickmenu", flags) ? flags : ADMIN_KICK , "Players Menu")
AddMenuLang("BAN_PLAYER", "amx_banmenu", get_clcmd_flags("amx_banmenu", flags) ? flags : ADMIN_BAN, "Players Menu")
AddMenuLang("SLAP_SLAY", "amx_slapmenu", get_clcmd_flags("amx_slapmenu", flags) ? flags : ADMIN_SLAY, "Players Menu")
AddMenuLang("TEAM_PLAYER", "amx_teammenu", get_clcmd_flags("amx_teammenu", flags) ? flags : ADMIN_LEVEL_A, "Players Menu")
AddMenuLang("CHANGEL", "amx_mapmenu", get_clcmd_flags("amx_mapmenu", flags) ? flags : ADMIN_MAP, "Maps Menu")
AddMenuLang("VOTE_MAPS", "amx_votemapmenu", get_clcmd_flags("amx_votemapmenu", flags) ? flags : ADMIN_VOTE, "Maps Menu")
AddMenuLang("SPECH_STUFF", "amx_speechmenu", get_clcmd_flags("amx_speechmenu", flags) ? flags : ADMIN_MENU, "Commands Menu")
AddMenuLang("CLIENT_COM", "amx_clcmdmenu", get_clcmd_flags("amx_clcmdmenu", flags) ? flags : ADMIN_LEVEL_A, "Players Menu")
AddMenuLang("SERVER_COM", "amx_cmdmenu", get_clcmd_flags("amx_cmdmenu", flags) ? flags : ADMIN_MENU, "Commands Menu")
AddMenuLang("CVARS_SET", "amx_cvarmenu", get_clcmd_flags("amx_cvarmenu", flags) ? flags : ADMIN_CVAR, "Commands Menu")
AddMenuLang("CONFIG", "amx_cfgmenu", get_clcmd_flags("amx_cfgmenu", flags) ? flags : ADMIN_MENU, "Commands Menu")
AddMenuLang("LANG_SET", "amx_langmenu", get_clcmd_flags("amx_langmenu", flags) ? flags : ADMIN_CFG, "Multi-Lingual System")
AddMenuLang("STATS_SET", "amx_statscfgmenu", get_clcmd_flags("amx_statscfgmenu", flags) ? flags : ADMIN_CFG, "Stats Configuration")
AddMenuLang("PAUSE_PLUG", "amx_pausecfgmenu", get_clcmd_flags("amx_pausecfgmenu", flags) ? flags : ADMIN_CFG, "Pause Plugins")
AddMenuLang("RES_WEAP", "amx_restmenu", get_clcmd_flags("amx_restmenu", flags) ? flags : ADMIN_CFG, "Restrict Weapons")
AddMenuLang("TELE_PLAYER", "amx_teleportmenu", get_clcmd_flags("amx_teleportmenu", flags) ? flags : ADMIN_CFG, "Teleport Menu")
}

as u see there r some commands like "amx_kickmenu", "amx_banmenu" so on.. and these commands r not included in the menufront.amxx, theyre included in some related plugins because i have

checked these commands on my ESF, the result is:

amxx cmds:
name access type plugin
--------------------------------------------------------------------------
[ 1] amx_kickmenu c client plmenu.amxx
[ 2] amx_banmenu d client plmenu.amxx
[ 3] amx_slapmenu e client plmenu.amxx
[ 4] amx_teammenu m client plmenu.amxx
[ 5] amx_mapmenu f client mapsmenu.amxx
[ 6] amx_votemapmenu f client mapsmenu.amxx
[ 7] amx_speechmenu u client cmdmenu.amxx
[ 8] amx_clcmdmenu m client plmenu.amxx
[ 9] amx_cmdmenu u client cmdmenu.amxx
[ 10] amx_cvarmenu g client cmdmenu.amxx
[ 11] amx_cfgmenu u client cmdmenu.amxx
[ 12] DIDN'T FIND THIS PLUGIN
[ 13] DIDN'T FIND THIS PLUGIN
[ 14] DIDN'T FIND THIS PLUGIN
[ 15] DIDN'T FIND THIS PLUGIN
[ 16] amx_teleportmenu h client telemenu.amxx
--------------------------------------------------------------------------

so u have to not only install "menufront.amxx", but also "plmenu.amxx", "mapsmenu.amxx", "cmdmenu.amxx" etc to connect with the AmxMenu plugin's options..

I saw u said ur ESF is ECX, the plugin path of ECX is kinda different from the others ESF versions, so you must install these related plugins into this path:

ECX/esf/core/plugins/CORE

if u dont understand what i said, ive made the patch 4 u, just download and install it into ur ECX. and if you dont need it or when uve installed it, just leave me a

message then i will delete the patch file, thank you. CLICK HERE TO DOWNLOAD
 

Users who are viewing this thread

Top Bottom