20.02.2010, 07:41
on top put #include <IsPlayerLadmin>
then at the bottom
Then use the code i gave you before.
then at the bottom
Код:
forward MessageToAdmins(color,const string[]);
public MessageToAdmins(color,const string[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) == 1) if (IsPlayerLAdmin(i)) SendClientMessage(i, color, string);
}
return 1;
}

