To fix the incorrect number, edit the plugin and find:
PHP Code:
$activemembers_p = vb_number_format($vbulletin->userstats['activemembers'])/($vbulletin->userstats['numbermembers'])*100;
Replace it with:
PHP Code:
$activemembers_p = vb_number_format(($vbulletin->userstats['activemembers']/$vbulletin->userstats['numbermembers'])*100,2);
Total number of members: 4,375
Total active members: 1,645
Mod now returns 37.60% instead of 0.02%.
This is a 3.7.3 PL1 board.