Posts: 7,801
Threads: 187
Joined: Feb 2010
Reputation:
0
Apparently you never studied math.
> means GREATER THAN
< means LESS THAN
= means EQUAL TO
The first piece of code will check if the admin level is greater than or equal to 0. This is not what you want. The second piece of code will check if the admin level is greater than 0. This is not what you want.
What you want is to see if the admin level EQUALS 0; you can do this by using the = sign (or more accurately, since this is PAWN, ==). Try again!