13.02.2009, 21:36
Try:
That's only the text part though, not the command to ignore someone and stuff.
Code:
static iPlayerIgnored[MAX_PLAYERS]; public OnPlayerText(playerid,text[]) { for(new i; i<MAX_PLAYERS; i++) { if(iPlayerIgnored[i] == playerid) continue; SendPlayerMessageToPlayer(i,playerid,text); } return true; }