17.03.2013, 03:07
Please someone correct me if im wrong! but if you have admin levels this is what i THINK you should do, change the stock from this
to this
but like i said i can be wrong
pawn Код:
stock SendClientMessageToAdmins(color, message[128])
{
for(new i = 0; i < MAX_PLAYERS; i++){
if(IsPlayerAdmin(i)){
SendClientMessage(i, color, message);
}
}
}
pawn Код:
stock SendClientMessageToAdmins(color, message[128])
{
for(new i = 0; i < MAX_PLAYERS; i++){
if(PlayerInfo[i][pAdmin] >= 1){
SendClientMessage(i, color, message);
}
}
}