31.01.2015, 07:54
change this:
to this
and if you don't have a stock for sendadminmessage
pawn Код:
SendClientMessageEx(i,COLOR_GREEN,string);
pawn Код:
SendAdminMessage(i,COLOR_GREEN,string);
pawn Код:
stock SendAdminMessage(color, admlvl, string[])
{
foreach(Player, i)
{
if(IsPlayerLoggedIn(i) && PlayerInfo[i][pAdmin] >= admlvl)
{
SendClientMessage(i, color, string);
}
}
return 1;
}

