--.--|         |                         ,-.-.          o          
  |  |---.,---.|,---.,---.,---.,---.,---.| | |,---.,---..,---.,---.
  |  |   ||---'||   |`---.,---||   ||---'| | |,---||   ||,---||    
  `  `   '`---'``   '`---'`---^`   '`---'` ' '`---^`   '``---^`---'

New Installation:
1.) Perform the file edits
In admincp/index.php find:
require_once('./global.php');


Add after:
//allowed ips
if ($vbulletin->options['allowip_enabled']){
$valid_ips = explode("|", $vbulletin->options['allowedips']);
if (!in_array($_SERVER['REMOTE_ADDR'],$valid_ips)) {
    header('Location: ../index.php'); //change according to your site setup
    exit();
}
}
//allowed dynamic ips
if ($vbulletin->options['allowdynamicip_enabled']){
$valid_dynamicips = explode("|", $vbulletin->options['alloweddynamicips']);
if (ereg($valid_dynamicips)) {
	//do nothing
	}
	else {
    header('Location: ../index.php'); //change according to your site setup
    exit();
}
}
//allowed usergroups
if ($vbulletin->options['allowgroups_enabled']){
$valid_ids = explode("|", $vbulletin->options['allowedgroups']);
if (!in_array($vbulletin->userinfo['usergroupid'], $valid_ids)) {
    header('Location: ../index.php'); //change according to your site setup
    exit();
}
}
//allowed user ids
if ($vbulletin->options['allowids_enabled']){
$valid_ids = explode("|", $vbulletin->options['allowedids']);
if (!in_array($vbulletin->userinfo['userid'], $valid_ids)) {
    header('Location: ../index.php'); //change according to your site setup
    exit();
}
}

2.) Go to AdminCP-> Plugins & Products-> Manage Products-> Import the product-admincpaccess.

3.) Go to AdminCP-> VBulletin Options-> VBulletin Options-> AdminCP Access.

4.) Change any of the settings you wish to use and then save the settings.

*If you end up locking youself out use the "Locked Out" package found in the attachments.


Upgrading:
You MUST uninstall the old product after that just follow the directions of the New Installation. 