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=418475)



Admin message - Ananisiki - 24.02.2013

^^^^^^^^


Respuesta: Admin message - Strier - 24.02.2013

For rcon admin??, or how do you have stored the Admin name, example: pInfo[playerid][Admin] or idk..


Re: Admin message - Ananisiki - 24.02.2013

~~~~~~~~


Re: Admin message - Ananisiki - 25.02.2013

^^^^^^^^


Re: Admin message - Abreezy - 25.02.2013

pawn Код:
IsCnRAdmin(playerid)
I'm guessing this is your admin variable.

So you could do

pawn Код:
foreach(new i : Player)
{
    IsCnRAdmin(i)
    {
        SendClientMessage(i, -1, string);

    }
}
Just format the string to whatever message you want to send


Re: Admin message - Ananisiki - 25.02.2013

~~~~~~~~~~~~~~