How to Make a Custom Message Function
#2

pawn Код:
stock SendAdminMessage(color, message[])
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            if(PlayerInfo[i][AdminLevel] >= 3)
            {
                SendClientMessage(i, color, message);
            }
        }
    }
}
Something like that
Reply


Messages In This Thread
How to Make a Custom Message Function - by milanosie - 07.02.2012, 17:25
Re: How to Make a Custom Message Function - by iTorran - 07.02.2012, 17:30
Re: How to Make a Custom Message Function - by Max_Coldheart - 07.02.2012, 17:47
Re: How to Make a Custom Message Function - by milanosie - 07.02.2012, 17:51
Re: How to Make a Custom Message Function - by milanosie - 07.02.2012, 17:55

Forum Jump:


Users browsing this thread: 1 Guest(s)