Quote:
Originally Posted by ^SmileY
Remember: is_user_alive enforcing a is_user_connected, so you do not need to check is_user_connected it is only is_user_alive
Post full code to better resolution, but you need like this
if(Level[id] == 69)
change to
if((Level[id] == 69) && is_user_alive(id))
|
Since Level[id] is checked before is_user_alive() you may get an index out of bounds error on Level[].
They should be switched for best result.
__________________