SA-MP Forums Archive
Admin message - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Admin message (/showthread.php?tid=493719)



Admin message - Ananisiki - 09.02.2014

~~~~~~


Re: Admin message - Lajko1 - 09.02.2014

if(IsCnRAdmin(playerid)) return SendClientMessage(playerid, COLOR_LIGHTBLUE, string);

This ?


Re: Admin message - Ananisiki - 09.02.2014

~~~~~~


Re: Admin message - ]Rafaellos[ - 09.02.2014

Use a loop.

pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
    if(IsCnRAdmin(i))
    {
        SendClientMessage(i, COLOR_LIGHTBLUE, string);
    }
}



Re: Admin message - Ananisiki - 09.02.2014

~~~~~~