I noticed some people found that their most users online is off, version 0.21 will fix this, everybody before version 0.21 can apply a manual fix
Open the plugin:
find this code:
Code:
$fake_max = $recordusers + $vbulletin->options['fake_stats_invisible'] + $vbulletin->options['fake_stats_guest'];
and replace it with this code
Code:
$fake_max = preg_replace('#[^0-9]#', '', $recordusers) + $vbulletin->options['fake_stats_invisible'] + $vbulletin->options['fake_stats_guest'];
The reason is, when you have more then 1000 users online, it will be 1,000
when you calculate it, it will be 1+x+y , instead of 1000+x+y. This fix removes the , and the . from the variable before calculating it.