PHP Code:
<?
include("global.php");
// below variables passed on by login script
$bbuserid="";
$bbpassword="";
// build vbsession w/ remember me!
fetch_sessionhash();
build_session($bbuserid, $bbpassword);
?>
Okay, for those who might do this down the road... passing the bbuserid and bbpassword to this script will create the session setting for vbulletin3 to read. Now I just have to look at the individual functions to reverse engineer it so that I can read those sessions with my scripts to "keep the session alive" for the rest of my site.