#pragma semicolon 1
#pragma newdecls required
static const char sBlockedCmds[][] = { // сюда добавляем команды
"explode",
"other_cmd"
};
public void OnPluginStart()
{
int num = sizeof(sBlockedCmds);
for(int i; i < num; i++) AddCommandListener(OnBlockedCmd, sBlockedCmds[i]);
}
public Action OnBlockedCmd(int client, const char[] command, int argc)
{
return Plugin_Handled;
}