02.06.2016, 13:08
Код:
if (!( 5 <= level <= 1337 ) return SCM(pid, -1, "You cannot do this!");
but this line makes it so i can set the admin smaller or equal to 1337 but not less or equal to 5
what can I do?
same result with:
Код:
if ( 6 >= level <= 1336 ) return SCM(pid, -1, "You cannot do this!");