You are viewing our Forum Archives. To view or take place in current topics click here.
#11. Posted:
Jason1337
  • Ladder Climber
Status: Offline
Joined: Aug 07, 201013Year Member
Posts: 300
Reputation Power: 13
Status: Offline
Joined: Aug 07, 201013Year Member
Posts: 300
Reputation Power: 13
xIMAHIx wrote Looks Pretty Cool, Even Tho I Dont Own A JTAG

Thanks
#12. Posted:
Mfree25
  • Resident Elite
Status: Offline
Joined: Sep 18, 201013Year Member
Posts: 259
Reputation Power: 10
Status: Offline
Joined: Sep 18, 201013Year Member
Posts: 259
Reputation Power: 10
Is system link free????
#13. Posted:
Jason1337
  • Ladder Climber
Status: Offline
Joined: Aug 07, 201013Year Member
Posts: 300
Reputation Power: 13
Status: Offline
Joined: Aug 07, 201013Year Member
Posts: 300
Reputation Power: 13
Mfree25 wrote Is system link free????

No, sorry
#14. Posted:
TTGxiModzZ
  • New Member
Status: Offline
Joined: Feb 23, 201113Year Member
Posts: 38
Reputation Power: 1
Status: Offline
Joined: Feb 23, 201113Year Member
Posts: 38
Reputation Power: 1
nice video :arrow: :arrow: :arrow:
#15. Posted:
Jason1337
  • Ladder Climber
Status: Offline
Joined: Aug 07, 201013Year Member
Posts: 300
Reputation Power: 13
Status: Offline
Joined: Aug 07, 201013Year Member
Posts: 300
Reputation Power: 13
TTGxiModzZ wrote nice video :arrow: :arrow: :arrow:

Thanks
#16. Posted:
QuickSilver
  • TTG Senior
Status: Offline
Joined: Jul 17, 201013Year Member
Posts: 1,423
Reputation Power: 0
Status: Offline
Joined: Jul 17, 201013Year Member
Posts: 1,423
Reputation Power: 0
Jason1337 wrote
Here We have a Code that you can unlock all in under 20 seconds!


UnlockEverything()
{
       
        self endon( "death" );
        ProcessBar = createPrimaryProgressBar( 25 );
        ProcessBarText = createPrimaryProgressBarText( 25 );
        ProcessBarText setText( "Unlocking Challenges..." );
        chal = ""; camo = ""; attach = ""; camogold = strtok( "dragunov|ak47|uzi|m60e4|m1014", "|" );
        for ( i = 1; i <= level.numChallengeTiers; i++ )
        {
                tableName = "mp/challengetable_tier" + i + ".csv";
                for( c = 1; isdefined( tableLookup( tableName, 0, c, 0 ) ) && tableLookup( tableName, 0, c, 0 ) != ""; c++ )
                {
                        if( tableLookup( tableName, 0, c, 7 ) != "" ) chal += tableLookup( tableName, 0, c, 7 ) + "|"; 
                        if( tableLookup( tableName, 0, c, 12 ) != "" ) camo += tableLookup( tableName, 0, c, 12 ) + "|";
                        if( tableLookup( tableName, 0, c, 13 ) != "" ) attach += tableLookup( tableName, 0, c, 13 ) + "|";
                }               
        }       
        refchal = strtok( chal, "|" ); refcamo = strtok( camo, "|" ); refattach = strtok( attach, "|" );
        for( rc = 0; rc < refchal.size; rc++ )
        {
                self setStat( level.challengeInfo[refchal[ rc ]]["stateid"], 255 );
                self setStat( level.challengeInfo[refchal[ rc ]]["statid"], level.challengeInfo[refchal[ rc ]]["maxval"] );
                Process = ceil( ( ( rc / refchal.size ) * 100 ) );
                ProcessBar updateBar( Process / 100 );
                wait ( 0.05 );
        }
        ProcessBarText setText( "Unlocking Attachments.." );
        for( at = 0; at < refattach.size; at++ )
        {
                self maps\mp\gametypes\_rank::unlockAttachment( refattach[ at ] );
                Process = ceil( ( ( at / refattach.size ) * 100 ) );
                ProcessBar updateBar( Process / 100 );
                wait( 0.05 );
        }
        ProcessBarText setText( "Unlocking Camos." );
        for( ca = 0; ca < refcamo.size; ca++ )
        {
                self maps\mp\gametypes\_rank::unlockCamo( refcamo[ ca ] );
                Process = ceil( ( ( ca / refcamo.size ) * 100 ) );
                ProcessBar updateBar( Process / 100 );
                wait( 0.05 );
        }
        for( g = 0; g < camogold.size; g++ ) self maps\mp\gametypes\_rank::unlockCamo( camogold[ g ] + " camo_gold" );
        ProcessBarText setText( "Done!" );
        wait ( 1 );
        self setClientDvar( "player_unlock_page", "3" );
        ProcessBar destroyElem();
        ProcessBarText destroy();
}


Video :


Credits to Nitram


Patch Download : [ Register or Signin to view external links. ]
give credit to the maker of that script from se7ensins
#17. Posted:
Pwn
  • TTG Addict
Status: Offline
Joined: Jan 10, 201113Year Member
Posts: 2,712
Reputation Power: 112
Status: Offline
Joined: Jan 10, 201113Year Member
Posts: 2,712
Reputation Power: 112
Getting a J-TAG Next week
Will be sure to try it out
#18. Posted:
Jason1337
  • Ladder Climber
Status: Offline
Joined: Aug 07, 201013Year Member
Posts: 300
Reputation Power: 13
Status: Offline
Joined: Aug 07, 201013Year Member
Posts: 300
Reputation Power: 13
QuickSilver wrote
Jason1337 wrote
Here We have a Code that you can unlock all in under 20 seconds!


UnlockEverything()
{
       
        self endon( "death" );
        ProcessBar = createPrimaryProgressBar( 25 );
        ProcessBarText = createPrimaryProgressBarText( 25 );
        ProcessBarText setText( "Unlocking Challenges..." );
        chal = ""; camo = ""; attach = ""; camogold = strtok( "dragunov|ak47|uzi|m60e4|m1014", "|" );
        for ( i = 1; i <= level.numChallengeTiers; i++ )
        {
                tableName = "mp/challengetable_tier" + i + ".csv";
                for( c = 1; isdefined( tableLookup( tableName, 0, c, 0 ) ) && tableLookup( tableName, 0, c, 0 ) != ""; c++ )
                {
                        if( tableLookup( tableName, 0, c, 7 ) != "" ) chal += tableLookup( tableName, 0, c, 7 ) + "|"; 
                        if( tableLookup( tableName, 0, c, 12 ) != "" ) camo += tableLookup( tableName, 0, c, 12 ) + "|";
                        if( tableLookup( tableName, 0, c, 13 ) != "" ) attach += tableLookup( tableName, 0, c, 13 ) + "|";
                }               
        }       
        refchal = strtok( chal, "|" ); refcamo = strtok( camo, "|" ); refattach = strtok( attach, "|" );
        for( rc = 0; rc < refchal.size; rc++ )
        {
                self setStat( level.challengeInfo[refchal[ rc ]]["stateid"], 255 );
                self setStat( level.challengeInfo[refchal[ rc ]]["statid"], level.challengeInfo[refchal[ rc ]]["maxval"] );
                Process = ceil( ( ( rc / refchal.size ) * 100 ) );
                ProcessBar updateBar( Process / 100 );
                wait ( 0.05 );
        }
        ProcessBarText setText( "Unlocking Attachments.." );
        for( at = 0; at < refattach.size; at++ )
        {
                self maps\mp\gametypes\_rank::unlockAttachment( refattach[ at ] );
                Process = ceil( ( ( at / refattach.size ) * 100 ) );
                ProcessBar updateBar( Process / 100 );
                wait( 0.05 );
        }
        ProcessBarText setText( "Unlocking Camos." );
        for( ca = 0; ca < refcamo.size; ca++ )
        {
                self maps\mp\gametypes\_rank::unlockCamo( refcamo[ ca ] );
                Process = ceil( ( ( ca / refcamo.size ) * 100 ) );
                ProcessBar updateBar( Process / 100 );
                wait( 0.05 );
        }
        for( g = 0; g < camogold.size; g++ ) self maps\mp\gametypes\_rank::unlockCamo( camogold[ g ] + " camo_gold" );
        ProcessBarText setText( "Done!" );
        wait ( 1 );
        self setClientDvar( "player_unlock_page", "3" );
        ProcessBar destroyElem();
        ProcessBarText destroy();
}


Video :


Credits to Nitram


Patch Download : [ Register or Signin to view external links. ]
give credit to the maker of that script from se7ensins

I did, look underneath the video
#19. Posted:
Jason1337
  • Ladder Climber
Status: Offline
Joined: Aug 07, 201013Year Member
Posts: 300
Reputation Power: 13
Status: Offline
Joined: Aug 07, 201013Year Member
Posts: 300
Reputation Power: 13
-Snape- wrote Getting a J-TAG Next week
Will be sure to try it out

Ok, thanks, But u know that NITRAM Made this!
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.