09.03.2011, 12:16
Put this under include's:
OnPlayerPrivmsg:
Edit: Too late, and This callback was removed in SA-MP 0.3.
pawn Код:
new muted[MAX_PLAYERS];
pawn Код:
public OnplayerPrivmsg(playerid, recieverid, text[])
{
if(muted[playerid] == 1) return 0;
return 1;
}