05.08.2014, 22:33
Have your forwarded this
And where you normaly send the death message change it to SendAdminMessage(COLOR_RED, msg);
EG. Change the thing that is called SendClientMessage(playerid, blah blah.... to SendAdminMessage(COLOR_RED, msg);
pawn Код:
public SendAdminMessage(color, string[])
{
foreach(Player, i)
{
if(PlayerInfo[i][pAdmin] >= 1) // your admin system here
{
SendClientMessageEx(i, color, string);
}
}
}
EG. Change the thing that is called SendClientMessage(playerid, blah blah.... to SendAdminMessage(COLOR_RED, msg);