15.11.2015, 11:10
Hello
I have been testing something and found out something wierd
If I use this:
I Have to be just LEVEL 5 "OR" RCON ADMIN
If I use this:
I Have to be just LEVEL 5 "AND" RCON ADMIN
Isnt that wierd
?
And on the wiki:
&&------------- and ------------- if (Left && Right)
||-------------- or ------------- if (Left || Right)
I have been testing something and found out something wierd
If I use this:
PHP код:
if(PlayerInfo[playerid][AdminLevel] < 5 && !IsPlayerAdmin(playerid)) return SendClientMessage(playerid,-1,"You arent admin");
If I use this:
PHP код:
if(PlayerInfo[playerid][AdminLevel] < 5 || !IsPlayerAdmin(playerid)) return SendClientMessage(playerid,-1,"You arent admin");
Isnt that wierd

And on the wiki:
&&------------- and ------------- if (Left && Right)
||-------------- or ------------- if (Left || Right)