The above code only fixes it for the total on the bottom of the forum.php page. If you need to add to the total for a specific forum, you can try a plugin (look in the manual if you need help) using the hook location "forumbit_display" and this code (change x to your forumid):
PHP Code:
if ($forum['forumid'] == x) {
$forum['threadcount'] = vb_number_format($forum['threadcount'] + 60000);
$forum['replycount'] = vb_number_format($forum['replycount'] + 700000);
}