14.01.2014, 04:54
You are using a incorrect control structure which is "<" and means "smaller then". In this case you are checking if the player has a vip level less then 1 and then execute the code, what you want to do is check if hes higher or equal to one.
Take a look here: https://sampwiki.blast.hk/wiki/Control_Structures
Good luck!
edit: I think I made a mistake, you are checking if hes less then one, you can simply change "<" to "== 0" but the above code will work aswell if you change your code a bit.
pawn Код:
Player[playerid][viplevel] >= 1)
Good luck!
edit: I think I made a mistake, you are checking if hes less then one, you can simply change "<" to "== 0" but the above code will work aswell if you change your code a bit.

