I still don't get it why you're not only adding it to the admin menu... like this:
PHP Code:
// Custom admin menu commands.
// For more information:
//
// http://wiki.alliedmods.net/Custom_Admin_Menu_%28SourceMod%29
//
// Note: This file must be in Valve KeyValues format (no multiline comments)
//
"Commands"
{
"MixCommands"
{
"Restart"
{
"cmd" "sm_rr"
execute "server"
}
"Live"
{
"cmd" "war_live"
execute "server"
}
"War Reset"
{
"cmd" "war_reset"
execute "server"
}
"Spectate all"
{
"cmd" "sm_spec @all"
execute "server"
}
}
}
__________________