Právě jsem si uvědomil, že na to nikdo nikdy neodpověděl, takže zde je moje vlastní řešení:
#grab global.php to access vbuls user systems
chdir("../forum/");
require("./global.php");
require_once('includes/functions_login.php');
#sanatize all variables for easier use
$username = $vbulletin->userinfo['username'];
$userid = $vbulletin->userinfo['userid'];
$loggouthash = $vbulletin->userinfo['logouthash'];
chdir("../dev/");
Tohle to pěkně třídí, vím, že takové proměnné NEPOTŘEBUJI sanovat, ale je to osobní preference.