al final he usado esto
Código PHP:
<?php
include('./global.php');
include('./includes/functions_user.php');
if ($vbulletin->userinfo['userid'] != '0') {
echo "Nombre usuario: ".$vbulletin->userinfo['username']."<br>";
echo "ID usuario: ".$vbulletin->userinfo['userid']."<br>";
} else {
?>
No estas logueado!!
<?php
}
?>