Open your skin_Arcade.php and look for:
Code:
$totalstext = $ibforums->lang['infobox_title1'].$tot_games.$ibforums->lang['infobox_title2'];
Change it to:
Code:
$totalstext = $ibforums->lang['infobox_title1'].number_format($tot_games).$ibforums->lang['infobox_title2'];
Save and upload.
Open mod_report.php and search for:
Code:
$ibforums->lang['total_games'] => $totalgames,
$ibforums->lang['total_i_play'] => $gamesplayed,
$ibforums->lang['total_play'] => $totalgamesplayed,
);
Replace it with:
Code:
$ibforums->lang['total_games'] => number_format($totalgames),
$ibforums->lang['total_i_play'] => number_format($gamesplayed),
$ibforums->lang['total_play'] => number_format($totalgamesplayed),
);
Save and upload