Mute player.
#2

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;
}

Reply


Messages In This Thread
Mute player. - by Abernethy - 11.07.2009, 11:27
Re: Mute player. - by happyface - 11.07.2009, 11:31
Re: Mute player. - by saiberfun - 11.07.2009, 11:32
Re: Mute player. - by Abernethy - 11.07.2009, 11:47
Re: Mute player. - by LarzI - 11.07.2009, 12:08

Forum Jump:


Users browsing this thread: 1 Guest(s)