open showthread.php
look for
PHP Code:
while ($post=$DB_site->fetch_array($posts) and $counter++<$perpage) {
if ($postdone[$post[postid]]) {
$counter--;
continue;
} else {
$postdone[$post[postid]]=1;
}
$postbits .= getpostbit($post);
}
above
$postbits .= getpostbit($post);
add
PHP Code:
$threadcount=$DB_site->query_first("SELECT COUNT(threadid) AS amount FROM thread WHERE postuserid='$post[userid]'");
then in your postbit template add $threacount[amount] to show the users thread starting count.