09.03.2012, 14:27
Replace:
With:
You are basically saying if the player's level is higher than 7 OR the player is NOT logged in as rcon (basically all players) then allow them to to perform the command.
pawn Код:
if(PlayerInfo[playerid][Level] >= 7 || !IsPlayerAdmin(playerid)) {
pawn Код:
if(PlayerInfo[playerid][Level] >= 7 || IsPlayerAdmin(playerid)) {