sendmessagetoadmins problem
#2

PHP код:
for(new 0MAX_PLAYERSi++) 
You forgot an "i" there.

Also going to give you a quick suggestion, there's a better way on sending a message to administrators.

You can just create a stock and then use it everytime you want to send a message to online admins.

Example:

PHP код:
stock SendAdminMessage(colorstring[])
{
    foreach(
Playeri)
    {
        if(
PlayerInfo[i][pAdmin] >= 1)
        {
            
SendClientMessage(icolorstring);
        }
    }

And then you can use: SendAdminMessage(COLOR, message);
Reply


Messages In This Thread
sendmessagetoadmins problem - by MrakBuster - 08.02.2018, 23:24
Re: sendmessagetoadmins problem - by solstice_ - 08.02.2018, 23:38
Re: sendmessagetoadmins problem - by MrakBuster - 08.02.2018, 23:46
Re: sendmessagetoadmins problem - by Dayrion - 09.02.2018, 00:21
Re: sendmessagetoadmins problem - by MrakBuster - 09.02.2018, 00:34
Re: sendmessagetoadmins problem - by Dayrion - 09.02.2018, 01:34

Forum Jump:


Users browsing this thread: 1 Guest(s)