01.10.2012, 17:41
Top of your GM:
Also add this if you need it:
pawn Код:
forward PlayerToPoint(color, string[]);
pawn Код:
public PlayerToPoint(color, string[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(PlayerInfo[i][pAdmin] >= 1) // if you need for admins only!!!
{
SendClientMessage(i, color, string);
}
}
}
}