23.04.2015, 18:18
It's easy, just make another condition.
Код:
for(new i; i < MAX_PLAYERS; i++) { //Checks if the player receiving the PM isn't the one who is sending if( i != playerid ) { if(PlayerInfo[i][pAdmin] >=1 || IsPlayerAdmin(i)) { if(PlayerInfo[playerid][pAdmin] < PlayerInfo[i][pAdmin]) { SendClientMessage(i, -1, aMessage); } } } }