15.09.2012, 14:29
What Error?
This Should Fix You're /cc Command
This Should Fix You're /cc Command
PHP код:
if(strcmp(cmd, "/clearchat", true) == 0 || strcmp(cmd, "/cc", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if (PlayerInfo[playerid][pAdmin] >= 1337)
{
for(new Order = 0; Order < 800; Order++)
SendClientMessageToAll(COLOR_GREY, " ");
}
else
{
SendClientMessage(playerid, COLOR_GRAD2, " You are not authorized to use that Command !");
return 1;
}
}
}