MyBB Community Forums

Full Version: Conditional help nedded !
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Please help me I need this code to affect everyone except admins, moderators and supermoderator.

if($mybb->user['postnum'] > 10)
    return;
if($mybb->user['postnum'] > 10 // Exclude higher post count holders
    | in_array($mybb->user['uid'],explode(',',$mybb->config['super_admins'])) // Exclude Superadmins
    | $mybb->usergroup['cancp']) // Exclude Admins
    | $mybb->usergroup['issupermod'] // Exclude Supermods
    | $mybb->usergroup['canmodcp']) // Exclude Mods
{
    return;
} else {
    // Do something
}
Holy cow @effone your are awesome man I really love dude Smile
I have just put you in my list of most respected and trusted dudes just after myself Smile

I have come up with this conditional what do you think?

if($mybb->user['postnum'] > 10 | in_array($mybb->user['usergroup'], array('3','4','6')))
    return;