If you create a plugin using hook location userprofile_create and this code:
Code:
if ($threads = $registry->db->query_first("SELECT COUNT(*) AS threads FROM " . TABLE_PREFIX . "thread WHERE postuserid = $userinfo[userid] AND open=1 AND visible=1"))
{
$this->prepared['threads'] = $threads['threads'];
$this->prepared['replys'] = $userinfo['posts'] - $threads['threads'];
}
then you can edit any of the block templates and insert $prepared[threads] and $prepared[replys].