OK, I tested this code and it seems to work:
Code:
global $vbulletin;
if ($threads = $vbulletin->db->query_first("SELECT COUNT(*) AS threads FROM " . TABLE_PREFIX . "thread WHERE postuserid = $post[userid] AND visible=1"))
{
$post['threads'] = $threads['threads'];
$post['replys'] = $post['posts'] - $threads['threads'];
}
Yes, adding $posts[threads] and $posts[replys] is what you want to do.
(I guess that should really have been "replies"

).