I save both the user name and the user id in the database. The reason for this is I save a query or two later. I also build my own link instead of letting vBulletin do it also to save a query or a few querys.
My custom CMS only uses 13 querys, If I was to use all vBulletin functions the querys would be up around 29 or so.
Code:
$current_user = $vbulletin->userinfo['username'];
$current_userid = $vbulletin->userinfo['userid'];