29.12.2010, 20:39
Can I do this with onplayertext?
pawn Код:
public OnPlayerText(playerid, text[])
{
if(muted[playerid] == 1)
{
SendClientMessage(playerid, Red, "You are muted and cannot talk");
return 1;
}
return 0;
}