suhrab_mujeeb
Unregistered
pawn Код:
IsPlayerAdmin(playerid) || pInfo[playerid][AdminLevel] == 1337
This code first checks if the player is an RCON admin. If he is an RCON admin, it does not check the second code but if he isn't an RCON admin, then it checks if the variable pInfo[playerid][AdminLevel] is equal to 1337. If any of the above statements is incorrect, the code can still run if the other one is correct.
pawn Код:
IsPlayerAdmin(playerid) && pInfo[playerid][AdminLevel] == 1337
First checks if the player is an RCON admin and if he is, then it checks if his pInfo[playerid][AdminLevel] is equal to 1337. If any of the above statements is found incorrect, it will make both of them false.