View Single Post
Re: Difficulty with menus
Old
  (#2)
KWo
Developer of PODBot mm
 
KWo's Avatar
 
Status: Offline
Posts: 3,425
Join Date: Apr 2004
Default Re: Difficulty with menus - 12-08-2005

There is a file in amx/config directory called config.ini


There are these lines:

Code:
; Menu configuration file
; File location: $moddir/addons/amx/configs.ini
; To use with Commands Menu plugin

; NOTE: By default in all settings the access level is set to "u".
;	   However you can change that, to limit the access to some settings.

; Commands Menu:
; < description > < command > < flags > < access level >
; "a" - execute from server console
; "b" - execute from admin console
; "c" - execute on all clients
; "d" - back to menu when executed

"Clanbase" "exec clanbase.cfg;servercfgfile \'\'" "a" "u"
"Clanbase Charges Only" "exec clanbase_co.cfg;servercfgfile \'\'" "a" "u"
"Clanbase ECUP 8" "exec cbecup8.cfg;servercfgfile \'\'" "a" "u"

"CAL" "exec cal.cfg;servercfgfile \'\'" "a" "u"
"ProvingGrounds" "exec leagues/pg.cfg;servercfgfile \'\'" "a" "u"

"OGL CS Server Config" "exec ogl.cfg;servercfgfile \'\'" "a" "u"
"OGL CS FF Server Config" "exec ogl_ff.cfg;servercfgfile \'\'" "a" "u"
"OGL CS Advanced Server Config" "exec ogl_adv.cfg;servercfgfile \'\'" "a" "u"

"CPL" "exec cpl.cfg;servercfgfile \'\'" "a" "u"

"ESL Fun Map" "exec eslfunmap.cfg;servercfgfile \'\'" "a" "u"
"ESL 5on5" "exec esl5on5mr.cfg.cfg;servercfgfile \'\'" "a" "u"
"ESL 5on5 Charges Only" "exec esl5on5co.cfg.cfg;servercfgfile \'\'" "a" "u"
"ESL 1on1" "exec esl1on1.cfg.cfg;servercfgfile \'\'" "a" "u"
"ESL 2on2" "exec esl2on2.cfg.cfg;servercfgfile \'\'" "a" "u"
"ESL 3on3" "exec esl3on3.cfg.cfg;servercfgfile \'\'" "a" "u"
"ESL EAS" "exec esleas.cfg.cfg;servercfgfile \'\'" "a" "u"
Look at them - evry configuration You want to invoke, You need some file *.cfg placed in cstrike directory (if I remember good th edefault place of them). It means You need to prepare these files before You want to use them (or take from some other colleague from his server). Another reason You can't activate the configuration You want - You don't have the access to execute these commands (that flag "u" in the example above - maybe is different in Your config.ini file).
  
Reply With Quote