edit index.php, find:
PHP Code:
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
After that add:
PHP Code:
$countposts['posts']=$countposts['posts']+100000;
(This will add 100,000 to real count)
For threads:
find:
PHP Code:
$countthreads=$DB_site->query_first('SELECT COUNT(*) AS threads FROM thread');
After that add:
PHP Code:
$countthreads['threads']=$countthreads['threads']+100000;