06.05.2011, 14:05
Lol that'd return a warning, because you didn't use the params[].
pawn Код:
COMMAND:clearchat(playerid) {
if(IsPlayerAdmin(playerid) {
for(new i = 0; i < 100; i++) SendClientMessageToAll(-1, " " );
} else {
return SendClientMessage(playerid,red,"ERROR: This command is only avaible for admins.");
}
return 1;
}