03.04.2011, 21:45
pawn Код:
new aDuty[MAX_PLAYERS];
CMD:aduty(playerid,params[])
{
if(aDuty[playerid] == 0)
{
aDuty[playerid] = 1;
SendClientMessageToAll(-1," --- An administrator is now ON DUTY!!");
}
else
{
aDuty[playerid] = 0;
SendClientMessageToAll(-1," --- An administrator is now OFF DUTY!!");
}
}