09.02.2011, 19:43
Okay, Well I have a clearchat command. And I wanted it to say "The chat will be cleared in 5 seconds" if an admin types /clearchat and five seconds later it will spam empty lines
Код:
command(clearchat, playerid, params[])
{
#pragma unused params
if(Player[playerid][AdminLevel] >= 4)
{
SendClientMessageToAll(LIGHTRED, "The chat will be cleared in 5 seconds");
for(new i = 0; i < 200; i++)
{
SendClientMessageToAll(GREY, " ");
}
}
return 1;
}

