How to Send a message to Admins, - 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: How to Send a message to Admins, (
/showthread.php?tid=289346)
Re : How to Send a message to Admins, -
Dutheil - 16.08.2015
PHP код:
stock SendToAdmins(const color, const message[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
if(PlayerInfo[i][pAdmin] > 1)
SendClientMessage(i, color, message);
return 1;
}