07.01.2013, 05:41
Trя this:
pawn Код:
CMD:cleardeathwindow(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] < 1)
return SendClientMessage(playerid, lightred, "[{B4B5B7}System{FF6347}]: {B4B5B7}You aren't authorized to use this command."),0;
static i,p;
for(i = 0, p = GetMaxPlayers(); i != p; ++i){
SendDeathMessage(INVALID_PLAYER_ID, INVALID_PLAYER_ID, 200);
}
SendClientMessageToAll(lightred, "[{B4B5B7}Admin{FF6347}]{B4B5B7} have cleared the Killfeed!");
return 1;
}