I can't send you the entire file, sorry. But it's not difficult - you already found the line. It starts looking like this:
PHP Code:
$onlinebits .= construct_online_bit($val, 1);
}
}
$totalonline = $numbervisible + $numberguests;
// ### MAX LOGGEDIN USERS ################################
if (intval($vbulletin->maxloggedin['maxonline']) <= $totalonline)
and you change it to look like this:
PHP Code:
$onlinebits .= construct_online_bit($val, 1);
}
}
$numberguests += 50;
$totalonline = $numbervisible + $numberguests;
// ### MAX LOGGEDIN USERS ################################
if (intval($vbulletin->maxloggedin['maxonline']) <= $totalonline)
If you've done that and it's not working, there's something else wrong.