09.03.2012, 14:35
The "!" character means NOT. For example if you type "if(!IsPlayerAdmin(playerid))" it means if the player is NOT RCON admin the do the following. So you want to type:
pawn Код:
if(PlayerInfo[playerid][Level] >= 7 || IsPlayerAdmin(playerid)) {
//The rest of the code here
}