11.07.2009, 11:31
maybe something like this?
pawn Код:
new Mute[MAX_PLAYERS];
pawn Код:
public OnPlayerText(playerid, text[])
{
if(Mute[playerid] == 1)
{
return 0;
}
if(strcmp(text, "jobs", true) == 0)
{
Mute[playerid] = 1;
}
return 1;
}

