and a bool....
pawn Код:
new bool:commandsTog;
//example
CMD:togcmds(playerid, params[])
{
// ad ur admin variables here such as IsPlayerAdmin or w/e ur using
if(commandsTog == false)
{
commandsTog = true;
}
else
{
commandsTog = false ;
}
return 1;
}
//now in any command all u have to do is add this command somewhere @ the top of it
CMD:ah(playerid, params[])
{
if(commandsTog == true) return SendClientMessage(playerid, -1, "Command is disabled");
/*
Coding w/e else u have suggest add somewhere at the top of the command so the cmd won't be
executed... probably after the new's or something...
*/
return 1;
}
NB:Ensure This is at the top of the script [doesnt have to be top top just b4 the variable is ever called]