October 28th, 2009
User-submitted installation instructions - We include these in the hope that they may be helpful, but we can't vouch for their accuracy. 

------------------------------------------------------------
VBulletin 3.7.6 P1.  The inserted function call (include('./includes/BotScout.php');) should go directly after the following lines in the register.php file:

if ($_POST['do'] == 'addmember')
{
	$vbulletin->input->clean_array_gpc('p', array(
		'options'             => TYPE_ARRAY_BOOL,
		'username'            => TYPE_STR,
		'email'               => TYPE_STR,
		'emailconfirm'        => TYPE_STR,
		'parentemail'         => TYPE_STR,
		'password'            => TYPE_STR,
		'password_md5'        => TYPE_STR,
		'passwordconfirm'     => TYPE_STR,
		'passwordconfirm_md5' => TYPE_STR,
		'referrername'        => TYPE_NOHTML,
		'coppauser'           => TYPE_BOOL,
		'day'                 => TYPE_UINT,
		'month'               => TYPE_UINT,
		'year'                => TYPE_UINT,
		'timezoneoffset'      => TYPE_NUM,
		'dst'                 => TYPE_UINT,
		'userfield'           => TYPE_ARRAY,
		'showbirthday'        => TYPE_UINT,
		'humanverify'         => TYPE_ARRAY,
	));
	
////////////////////////////////////////////////////
// BotScout.com "BotBuster" check
include('./includes/BotScout.php');
////////////////////////////////////////////////////


In my version of VBulletin the function started on line 211, but that could vary.

