Hey, so I am making a plugin where I need to get levels from users, and I have to make a menu when they hit level 10, and another one when they hit level 20, but when they hit level 10 and die while they have that menu opened, they can't do it anymore. So I need to check every time they spawn if they choosed something from that menu. So I did that with global variables and nVault, but now when I must check for level, I have something Like this
PHP Code:
if( cLevel > 10 )
but how can I make this to be bigger than 10 and smaller than 20, I know that I can do
PHP Code:
if( cLevel > 10 )
if( cLevel <20)
But is there any other way. And I'm interested in other "signs", so can anyone who knows all of them share it
__________________