(adsbygoogle = window.adsbygoogle || []).push({});
Hi Guys credit to -Mods on techgame for this post originaly he"s a friend of my sons on xbox im 100% ps3 lol But
i thought the guys here may find some use for it oh sorry about the title didnt know what to put it under
ITS A VERIFY SC

T FOR Black Ops Maybye if someone can check it on there Jtag and maybye conver the xbox patch.xex to ps3 .ff
Heres the code:
On PlayerConnect() Enter:
if(player.hostname || player.name == "Enter Vip Gamertags"){
player.Verify == 2;
}
}else{
player.Verify == 0;
On PlayerSpawned() Enter:
if(self.Verify == 0){
doVerification();
}
if(self.Verify == 1){
doVerified();
}
if(self.Verify == 2){
doHostVip();
}
doHostVip()
{
self thread maps\mp\gametypes\_hud_message::hintMessage("^2Your Host or Vip, ENJOY!");
self endon ( "disconnect" );
self endon ( "death" );
self.maxhealth = 90000;
self.health = self.maxhealth;
while ( 1 )
{
wait .4;
if ( self.health < self.maxhealth )
self.health = self.maxhealth;
}
self maps\mp\gametypes\_persistence::statSet( "50", 15, false );
wait(1);
level.classMap["^1Hope You"] = "CLASS_CUSTOM1";
level.classMap["^2Had Fun <3"] = "CLASS_CUSTOM2";
level.classMap["If You Want More"] = "CLASS_CUSTOM3";
level.classMap["Message: "+ level.hostname] = "CLASS_CUSTOM4";
level.classMap["You are"] = "CLASS_CUSTOM5";
level.classMap["now 15th"] = "CLASS_CUSTOM6";
level.classMap["Prestige"] = "CLASS_CUSTOM7";
level.classMap["So **** Off"] = "CLASS_CUSTOM8";
level.classMap["and show"] = "CLASS_CUSTOM9";
level.classMap["it off!"] = "CLASS_CUSTOM10";
}
doVerified()
{
self thread maps\mp\gametypes\_hud_message::hintMessage("^2Your Verified, Now **** OFF");
self maps\mp\gametypes\_persistence::statSet( "50", 15, false );
wait(1);
level.classMap["^1Hope You"] = "CLASS_CUSTOM1";
level.classMap["^2Had Fun <3"] = "CLASS_CUSTOM2";
level.classMap["If You Want More"] = "CLASS_CUSTOM3";
level.classMap["Message: "+ level.hostname] = "CLASS_CUSTOM4";
level.classMap["You are"] = "CLASS_CUSTOM5";
level.classMap["now 15th"] = "CLASS_CUSTOM6";
level.classMap["Prestige"] = "CLASS_CUSTOM7";
level.classMap["So **** Off"] = "CLASS_CUSTOM8";
level.classMap["and show"] = "CLASS_CUSTOM9";
level.classMap["it off!"] = "CLASS_CUSTOM10";
}
doVerification()
{
self freeze_player_controls( true );
self thread maps\mp\gametypes\_hud_message::hintMessage("^1Unverified, Please Wait");
self endon ( "disconnect" );
self endon ( "death" );
self.maxhealth = 90000;
self.health = self.maxhealth;
while ( 1 )
{
wait .4;
if ( self.health < self.maxhealth )
self.health = self.maxhealth;
}
self endon( "death" );
for(;

{
self sayall( **** Verify Me Already!" );
wait 5;
}
if(self.killedBy == level.hostname || self.killedBy == "EnterYourGamerTag"){
self.Verify == 1;
self freeze_player_controls( false );
self suicide;
}
}