14.03.2013, 03:25
(
Последний раз редактировалось Ananisiki; 15.12.2013 в 18:10.
)
^^^^^^^^
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;
}
bool:commandsTog;
//change to
new bool:commandsTog;