You are viewing our Forum Archives. To view or take place in current topics click here.
Does it Work?
Yes?
50.00% (1 vote)
50.00% (1 vote)
No?
50.00% (1 vote)
50.00% (1 vote)
Total Votes: 2
[Release]CoD Black Ops verification Script with vip
Posted:
[Release]CoD Black Ops verification Script with vipPosted:
Status: Offline
Joined: Dec 24, 201013Year Member
Posts: 23
Reputation Power: 1
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;
}
}
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;
}
}
#2. Posted:
Status: Offline
Joined: Jan 03, 201113Year Member
Posts: 121
Reputation Power: 4
Anybody Tested This?
Thanks Anyway
I'll Try It Soon
Cheers
+
Well Done Helping The Community
Thanks Anyway
I'll Try It Soon
Cheers
+
Well Done Helping The Community
- 0useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Oct 23, 201014Year Member
Posts: 276
Reputation Power: 8
Status: Offline
Joined: Oct 23, 201014Year Member
Posts: 276
Reputation Power: 8
I'm sure you just copied the script from some MW2 script and changed the wording. Most likely will not work either. Sorry kid.
- 0useful
- 0not useful
#4. Posted:
Status: Offline
Joined: Dec 24, 201013Year Member
Posts: 23
Reputation Power: 1
-OsMx- wrote I'm sure you just copied the script from some MW2 script and changed the wording. Most likely will not work either. Sorry kid.
Actually I didn't copy it, in code there has to be A on player connect and an on player spawned so that's what it reads when you spawn :p
- 0useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Sep 10, 201014Year Member
Posts: 533
Reputation Power: 23
Status: Offline
Joined: Sep 10, 201014Year Member
Posts: 533
Reputation Power: 23
lol i doubt this works consdering he has like 10 posts...
- 0useful
- 1not useful
#6. Posted:
Status: Offline
Joined: Oct 21, 201014Year Member
Posts: 103
Reputation Power: 4
Status: Offline
Joined: Oct 21, 201014Year Member
Posts: 103
Reputation Power: 4
These Are From MW2 Patches You Can do This Easy I'f You Use .ff Viewer
- 0useful
- 0not useful
#7. Posted:
Status: Offline
Joined: Dec 24, 201013Year Member
Posts: 23
Reputation Power: 1
TheBushMan wrote lol i doubt this works consdering he has like 10 posts...
posts don't mean shit sorry lol 8)
- 0useful
- 0not useful
#8. Posted:
Status: Offline
Joined: Dec 24, 201013Year Member
Posts: 23
Reputation Power: 1
ModTheUniverse wrote These Are From MW2 Patches You Can do This Easy I'f You Use .ff Viewer
actually, you can't you have to decrypt the file to a zone file then open it up with notepad ++, or a zone editor then you have to re-crypt it so it saves as an ff file
- 0useful
- 0not useful
#9. Posted:
Status: Offline
Joined: Jul 18, 201014Year Member
Posts: 979
Reputation Power: 39
Status: Offline
Joined: Jul 18, 201014Year Member
Posts: 979
Reputation Power: 39
I dont know if this would work....
- 0useful
- 0not useful
#10. Posted:
Status: Offline
Joined: Dec 24, 201013Year Member
Posts: 23
Reputation Power: 1
TTGTOOL wrote I dont know if this would work....
I know but, it's still a try, and also editing Black Ops with a patch has just started within the last week so people are just getting used to the new codes and different ones so it's just a start to see.
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.