Looks like VB somehow stops you from being able to simply grab the $_POST info, and you have to output the data their way:
$vbulletin->userinfo["field6"];
Only took me 6 hours of messing around before I realized how that works haha.
--
For anyone who reads this thread and is interested in doing something similar:
Find
Code:
eval(standard_error(fetch_error('registration_complete', $username, $vbulletin->session->vars['sessionurl'], $vbulletin->options['bburl'] . '/' . $vbulletin->options['forumhome'] . '.php'), '', false));
}
}
}
}
}
}
else if ($_GET['do'] == 'addmember')
In register.php
Above, add:
Code:
$bs = $vbulletin->userinfo["field6"];
**Put conditional statements w/ header: redirects here**
You can now redirect users to a page of your choice, depending on what radio button they chose in registration.