What Wroung
#3

You are making admins who are level 1+ can use # chat, while you don't show them be cause it's for level 2+ :
pawn Код:
public MessageToPlayerAdmin(color,const string[])
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
    if(IsPlayerConnected(i) == 1)
    if(PlayerInfo[i][Admin] >= 2) // Look here, level 2 only, while level 1 can send it but they don't see it.
    SendClientMessage(i, color, string);
    }
    return 1;
}
the fix is to change '2' to '1'.
Reply


Messages In This Thread
What Wroung - by AYOUYOU - 14.01.2015, 11:14
Re: What Wroung - by Threshold - 14.01.2015, 11:21
Re: What Wroung - by Sawalha - 14.01.2015, 11:21
Re : What Wroung - by AYOUYOU - 14.01.2015, 11:23
Re: What Wroung - by Sawalha - 14.01.2015, 11:27
Re : Re: What Wroung - by AYOUYOU - 14.01.2015, 11:48
Re: What Wroung - by Threshold - 14.01.2015, 14:19

Forum Jump:


Users browsing this thread: 1 Guest(s)