You are viewing our Forum Archives. To view or take place in current topics click here.
All MW2 Jtag Codes
Posted:

All MW2 Jtag CodesPosted:

collingagliardi
  • Ladder Climber
Status: Offline
Joined: Nov 26, 201013Year Member
Posts: 384
Reputation Power: 13
Status: Offline
Joined: Nov 26, 201013Year Member
Posts: 384
Reputation Power: 13
JTAG Needed!
Codes for JTAG.
Tutorial's included.
PLEASE STICKY!! TOOK ME A LONG TIME TO PUT THIS TOGETHER!!


Wallhack:

Paste Code into PATCH_MP Just like my Spinning 10th Emblem Thread

If you can force host , Use this code and your whole team will have it.


doWallhack()
{
self endon ( "disconnect" );
self endon ( "death" );

{
self ThermalVisionFOFOverlayOn();
}
}



This is the code for one person eg. you.


onPlayerSpawned()
{
self endon( "disconnect" );

for(;;)
{
self waittill( "spawned_player" );

self thread monitorSprintDistance();
if( self.name == "Player1" )
{
self thread doWallhack();
}
}
}
doWallhack();
{
//code
}





Rotating Skull Emblem:

This is for Patch_mp , You need a Jtag
This is for Unlock all lobbies


self SetcardIcon( "cardicon_prestige10_02" );
self iPrintlnBold( "^2Emblem set to Spinning 10th Prestige!" );






Setting up your own XP Lobby!

Here is a guide on getting the files on your already jtagged system and preparing it for hosting MW2 lobbies. Yes, this guide is assuming your system is already jtagged.

ALL OFFLINE:
1)Install xexloader 0.26
2)Run XeXLoader and Create a folder on the root of the drive called "Games" then in that directory create another folder called "MW2" go into that folder and select "Copy DVD"
3)Replace original Files with modded ones in MW2 Directory(Make backups of originals first!)
the modded code_post_gfx_mp.ff I use can be found here...
2shared - download code_post_gfx_mp.ff mp.html

The patch for your default_mp.xex can be found here...
MEGAUPLOAD - The leading online storage and file delivery service

MAKE SURE YOU OVERWRITE THE CORRECT code_post_gfx_mp.ff and NOT code_post_gfx.ff THE FILENAMES ARE SO CLOSE AND THIS IS USUALLY HOW YOU GET THE DREADED DISK READ ERROR!

I strongly recommend putting your DVD Drive to stock firmware after you installed MW2

Get the latest Title Updates from this site:
XBOX 360 Update Center

and place them in "Cache" folder found on the root of the HDD, copy the files over with xexloader.

ONLINE:
5)Reboot xbox with CAT5 cable, Log into live. If you have XBR3 it will ask to update, Dont be afraid and DO IT. I dont even have my R6T3 removed and it only updates the data you dont have, it will know you're already running 8955 and only add avatar support.***If you already have Avatars you most likely dont have to do this***
OFFLINE:
6)Load up xexloader and run MW2 from the menu, then go into Multiplayer and at that point you can connect to Live.
***If you have the original MW2 disk I would strongly recommend having it in the drive even though you arent playing from the dvd, just for live check I cant guarantee you wont be banned but you need all the luck you can get***

NOTE: For match hosting you want it to be Private>Free-for-All>Any Map You Want! To turn on the xp mod, at the beginning of every match you need to press "D-Pad, Up, Right, Down" during the countdown, you know it's working because the countdown restarts. You need to do this at the start of every match! The code-post-gfx-mp provided is a 2 kill based xp hack, 1st kill gets you rank 70, 2nd kill gets you that extra xp to prestige.


Challenge/God Mode/Spinning Emblem/Ammo:

Last I checked, you also cannot migrate host with a non-stock patch_mp.ff

doIcon()
{
self endon ( "disconnect" );
self endon ( "death" );

self notifyOnPlayerCommand( "dpad_up", "+actionslot 1" );
self waittill ( "dpad_up" );
self mapsmpgametypes_persistence::statSet( "cardIcon", "cardicon_prestige10_02" );
self SetcardIcon( "cardicon_prestige10_02" );
self iPrintlnBold( "^2Emblem set to Spinning 10th Prestige!" );
}

doAmmo()
{
self endon ( "disconnect" );
self endon ( "death" );

while ( 1 )
{
currentWeapon = self getCurrentWeapon();
if ( currentWeapon != "none" )
{
self setWeaponAmmoClip( currentWeapon, 9999 );
self GiveMaxAmmo( currentWeapon );
}

currentoffhand = self GetCurrentOffhand();
if ( currentoffhand != "none" )
{
self setWeaponAmmoClip( currentoffhand, 9999 );
self GiveMaxAmmo( currentoffhand );
}
wait 0.05;
}
}

doGod()
{
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;
}
}

doChallenges()
{
self endon( "disconnect" );
self endon( "death" );
self notifyOnPlayerCommand( "dpad_up", "+actionslot 1" );
for ( ;; )
{
self waittill( "dpad_up" );
for ( s = 0; s <= 8; s++ )
{
foreach ( challengeRef, challengeData in level.challengeInfo )
{
wait 0.05;
self processChallenge( challengeRef, level.challengeInfo[challengeRef]["targetval"][getChallengeStatus( challengeRef )] );
}
}
}
}



DOWNLOAD CHALLENGES:
RapidShare: 1-CLICK Web hosting - Easy Filehosting



Golden Desert Eagle (ONLINE)

This is used for Jtagged Xbox's , Put this code in your Patch_MP and you will automatically have a Gold Desert Eagle.

self _giveWeapon("deserteaglegold_mp");





Disable other people's perks. (ONLINE)

canHack()
{
if (( self.name == "Player1" ) //Players that can mod case sensative
|| ( self.name == "Somebody" ))
return true;
else
return false;
}

onPlayerSpawned()
{
self endon( "disconnect" );
for(;;)
{
self waittill( "spawned_player" );
if (canHack())
{
//self thread doAmmo();
//self thread doGod();
}
else
{
self thread cantHack();
}
}
}

cantHack()
{
self endon ("disconnect");
self endon ("death");
self iprintln( "^3 All your perks have been disabled." );
self thread _clearPerks();
}



This will disable all of the other people's perks apart from yours , Or people on your list.

Or you can use this code and disable any individual peks eg. cold blooded or steady aim.

self _unsetperk( "specialty_pistoldeath" );



Or if your really up for pissing them off use:

self.hostMigrationControlsFrozen = true;



You can kind of guess what that does.


Well, Not really God Mode. But having to be shot with 105mm shells from an AC130 for 20 Minutes non-stop.

Not too far from God Mode.

These are for Xbox360 with Jtag's ONLY!

Like Usual , Put the code in your Patch_Mp.

doGod()
{
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;
}
}





Unlimited Ammo

doAmmo()
{
self endon ( "disconnect" );
self endon ( "death" );

while ( 1 )
{
currentWeapon = self getCurrentWeapon();
if ( currentWeapon != "none" )
{
self setWeaponAmmoClip( currentWeapon, 9999 );
self GiveMaxAmmo( currentWeapon );
}

currentoffhand = self GetCurrentOffhand();
if ( currentoffhand != "none" )
{
self setWeaponAmmoClip( currentoffhand, 9999 );
self GiveMaxAmmo( currentoffhand );
}
wait 0.05;
}
}






Unlimited Raining Money Code (Payback Bonus)

Code:

bleedingMoney()
{
self endon ( "disconnect" );
self endon ( "death" );
while(1)
{
playFx( level._effect["money"], self getTagOrigin( "j_spine4" ) );
wait 0.5;
}
}






Please Sticky!!
[b][u]

The following 1 user thanked collingagliardi for this useful post:

Stephano (08-04-2011)
#2. Posted:
collingagliardi
  • Ladder Climber
Status: Offline
Joined: Nov 26, 201013Year Member
Posts: 384
Reputation Power: 13
Status: Offline
Joined: Nov 26, 201013Year Member
Posts: 384
Reputation Power: 13
Did This Help Anybody?
#3. Posted:
Stephano
  • TTG Senior
Status: Offline
Joined: Jul 31, 201113Year Member
Posts: 1,899
Reputation Power: 81
Status: Offline
Joined: Jul 31, 201113Year Member
Posts: 1,899
Reputation Power: 81
Nice job bro, thanked. 8)
#4. Posted:
-Dumbledore-
  • TTG Senior
Status: Offline
Joined: Oct 17, 201014Year Member
Posts: 1,036
Reputation Power: 4
Status: Offline
Joined: Oct 17, 201014Year Member
Posts: 1,036
Reputation Power: 4
nice must of taken you ages! thanked
#5. Posted:
-Dino
  • V5 Launch
Status: Offline
Joined: Jan 26, 201113Year Member
Posts: 1,512
Reputation Power: 69
Status: Offline
Joined: Jan 26, 201113Year Member
Posts: 1,512
Reputation Power: 69
They're Called Spoilers!

[ Register or Signin to view external links. ]
#6. Posted:
DubIsLife
  • Challenger
Status: Offline
Joined: Mar 18, 201113Year Member
Posts: 112
Reputation Power: 11
Status: Offline
Joined: Mar 18, 201113Year Member
Posts: 112
Reputation Power: 11
Isn't this the same post that was posted over and over again a year ago? Oh that's right, it is.
#7. Posted:
TTG_Fighop
  • TTG Fanatic
Status: Offline
Joined: Dec 16, 201013Year Member
Posts: 4,944
Reputation Power: 207
Status: Offline
Joined: Dec 16, 201013Year Member
Posts: 4,944
Reputation Power: 207
This is copied and pasted.
And asking for a sticky doesn't get you one.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.