Vincent]Okay so you want the postcount to be total posts plus total PMs correct? If so then use this.
Open admin/functions.php
Find:
PHP Code:
if ($post['receivepm'] and $enablepms==1) {
eval("\$post[pmlink] = \"".gettemplate("postbit_sendpm")."\";");
} else {
$post[pmlink] = "";
}
Add under that:
PHP Code:
$pmcount = $DB_site->query_first("SELECT COUNT(*) AS messages FROM privatemessage WHERE userid=$touserinfo[userid]");
$postspms = $post[posts] + $pmcount[messages];
Then login to Admin CP, go to Templates > Modify > Template Set[expand] > Postbit[expand] > postbit
Find:
$post[posts]
Replace that with:
$postspms
And you're done, it adds your PM count to your post count. If I'm wrong then sorry =\