Ich hab genau das selbe Problem. die binds hab ich wie beschrieben eingestellt, und ich bin auch als Admin angemeldet. ( say: /votemap funktioniert z.B.)
Troztdem passiert nichts, wenn ich die Taste drücke auf die ich "clanmodmenu" gebindet hab.
// ---------------------------------------------------------------------------
// ClanMod 1.81.24 Default Config Pack v1.81.24 (20 May, 2003)
// Visit
www.unitedadmins.com for all your ClanMod needs
// Please read the manual carefully before altering this file!
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
// Clears out all commands in ClanMod for a fresh start each time config loads
// ---------------------------------------------------------------------------
cm_remove * *
// ---------------------------------------------------------------------------
// Writes into HLDS Logs, Sets Config File Version, and Defines Menu Layout
// ---------------------------------------------------------------------------
cm_log "Executing ClanMod configuration file (&cm_configpath&/clanmod.cfg)"
clanmod_cfgversion "v1.81.24"
cm_menulayout "ABCD1EQ1HLM1J:ING1FOPR1TU"
cm_admin "Myname" "huhuhihi" "QCNGRTAVDMSEKUBPJkrlo"
// ---------------------------------------------------------------------------
// Separate Config Files to Execute
// ---------------------------------------------------------------------------
cm_exec configs/cm_titles.cfg // Load language specific messages into memory
cm_exec configs/cm_menus.cfg // Setup ClanMod custom menus and changeable CVARs
cm_exec configs/cm_badwords.cfg // Setup censored/restricted words and replacements
cm_exec configs/cm_aliases.cfg // Setup aliases to ease ClanMod command usage
cm_exec configs/cm_tksystem.cfg // Setup the TK System
cm_exec configs/cm_settings.cfg // Setup the the most common ClanMod CVARs
cm_exec configs/cm_maps.cfg // Setup for cm Menu maps
cm_exec configs/cm_motd.cfg // Setup for modt msgs
// ---------------------------------------------------------------------------
// MySQL Configuration
// ---------------------------------------------------------------------------
// cm_mysql - default is 0. If you are using the MySQL binary, change this
// setting to 1. If the connection fails for any reason, ClanMod
// will change this back to 0 and try again at the next mapchange.
//
// 0 - MySQL is disabled, or connection failed
// 1 - MySQL is enabled, will get users from database
// 2 - MySQL is enabled, will get users from database and log admin actions to database
cm_mysql 0
cm_if cm_mysql > 0 then cm_exec configs/cm_mysql.cfg else cm_exec configs/cm_admins.cfg
// ---------------------------------------------------------------------------
// Checks cvars so it can load the correct configs
// ---------------------------------------------------------------------------
//
// Tries to figure out what mod you are running and will exec the appropriate config
cm_if cm_mod == action then cm_exec configs/mods/cm_action.cfg else cm_if cm_mod == cstrike then cm_exec configs/mods/cm_cstrike.cfg else cm_if cm_mod == dod then cm_exec configs/mods/cm_dod.cfg else cm_if cm_mod == firearms then cm_exec configs/mods/cm_firearms.cfg else cm_if cm_mod == ios then cm_exec configs/mods/cm_ios.cfg else cm_if cm_mod == ns then cm_exec configs/mods/cm_ns.cfg else cm_if cm_mod == tfc then cm_exec configs/mods/cm_tfc.cfg else cm_if cm_mod == vs then cm_exec configs/mods/cm_vs.cfg else cm_if cm_mod == tod then cm_exec configs/mods/cm_tod.cfg else cm_log "No MOD Specific Config found, please check the FAQ."