30.07.2013, 20:41
pawn Код:
/ Block the player's text if he has been muted
if (APlayerData[playerid][Muted] == true)
{
// Let the player know he's still muted
SendClientMessage(playerid, 0xFFFFFFFF, "{808080}Voce estб Mudo Agora.");
// Don't allow his text to be sent to the chatbox
return 0;
}
return 1;
}