Quote:
Originally Posted by LostSkill
PHP Code:
if( get_user_flags(iVictim) & ADMIN_LEVEL_H && get_pcvar_num(g_pCvarEnabled) && (read_data(4) || read_data(5) || read_data(6)) )
Dont works 
|
You should use "id" and not "iVictim".
PHP Code:
if( get_user_flags(id) & ADMIN_LEVEL_H && get_pcvar_num(g_pCvarEnabled) && (read_data(4) || read_data(5) || read_data(6)) )
Well, that is how I interpreted your request anyways.
__________________