My apologies
here's mine with the round incorporated
PHP Code:
$postdays = $vbulletin->db->query_read("SELECT joindate,posts FROM " . TABLE_PREFIX . "user WHERE userid = $post[userid]");
{
$mpostdays = $vbulletin->db->fetch_array($postdays);
$jd = time()-$mpostdays['joindate'];
$mpsts = round($jd/$mpostdays['posts']/86400);
}
You'll have to use KH99s use of hook to add it to the template or add $mpsts where you want the value to display. Remember I haven't tested this!!!