Not difficult but adds a query. Probably could eliminate the extra query but I don't feel like putting the thought process into it. Go ahead and package this up as a hack and claim it as your own.
In showthread.php
//FIND
PHP Code:
// get first and last post ids for this page (for big reply buttons)
//ABOVE THAT ADD
PHP Code:
$countthreadsq = $DB_site->query("SELECT COUNT(DISTINCT(threadid)) AS threadcount FROM post WHERE userid=".$bbuserinfo['userid']);
$countthreads = $DB_site->fetch_array($countthreadsq);
$post['threadcount'] = $countthreads['threadcount'];
Refer to it in your postbit as $post[threadcount]
Aaron