In index.php change:
PHP Code:
$totalposts=number_format($countposts['posts']);
To:
PHP Code:
$totalposts=number_format($countposts['posts']+10000);
(Where 10000 is the number to be added to the actual post count)
And Change:
PHP Code:
$totalthreads=number_format($countthreads['threads']);
To:
PHP Code:
$totalthreads=number_format($countthreads['threads']+1000);
(again 1000 is the number of threads you want to add to the actuall thread count).