21.05.2009, 20:20
pawn Код:
if(!strcmp(tmp, "!ABORT", true))
{
if(SERVER_SHUTDOWN_STARTED == 0)
return SendClientMessage(playerid, COLOR_RED_LIGHT, "{ADMIN} There is no timed shutdown in effect");
KillTimer(SERVER_SHUTDOWN_STARTED);
GetPlayerName(playerid, name, 24);
format(str, 128, "{ADMIN} '%s'[ID:%d] has cancelled the timed server shutdown.", name, playerid);
SendClientMessageToAll(COLOR_YELLOW, str);
return 1;
}

