Quote:
|
Originally Posted by nightscreem
f ( blockMenu || !is_user_alive(i) || (get_user_flags(i)&ADMIN_IMMUNITY) ) {
into
if ( blockMenu || !is_user_alive(i) || {
|
Can you see the error, I can! You forgot the last bracket!! It should be like so, and yes it works as I use it.
Code:
if ( blockMenu || !is_user_alive(i) )
Cheers!
__________________