quark. du musst die amx-mod sma-datei ändern. entweder du kopierst die zeile register_clcmd(..) und änderst es zu register_srvcmd(...), oder du änderst register_clcmd zu register_concmd
Code:
[b]amxmod.inc[/b]
/* Registers function which will be called from client console. */
native register_clcmd(const client_cmd[],const function[],flags=-1, info[]="");
/* Registers function which will be called from any console. */
native register_concmd(const cmd[],const function[],flags=-1, info[]="");
/* Registers function which will be called from server console. */
native register_srvcmd(const server_cmd[],const function[],flags=-1, info[]="");