This seems to be the code to get the profile pic ;
PHP Code:
if ($vbulletin->options['usefileavatar'])
{
$userinfo['profilepicurl'] = $vbulletin->options['profilepicurl'] . '/profilepic' . $userinfo['userid'] . '_' . $userinfo['profilepicrevision'] . '.gif';
}
else
{
$userinfo['profilepicurl'] = 'image.php?' . $vbulletin->session->vars['sessionurl'] . 'u=' . $userinfo['userid'] . "&dateline=$userinfo[profilepicdateline]&type=profile";
}
As best I can tell from a quick look, you need to call
$somevar = fetch_userinfo(<userid>,8) first to get the details, and then change $userinfo to $somevar in the code above.
This is all untested, just a quick look at the code.