In 3.0.7 I put this code in phpinclude_start:
PHP Code:
$buddyarray = explode(' ', $bbuserinfo['buddylist']);
And referenced that array using $GLOBALS['buddyarray'] in the templates.
In 3.5 I made a global_start plugin using this code:
PHP Code:
$buddyarray = explode(' ', $vbulletin->userinfo['buddylist']);
But $GLOBALS['buddyarray'] doesn't seem to work.
Also the u=$userinfo[userid] doesn't seem to work in the postbit either. :ermm: