Tutorial Created By: ILSD3MON
Before We Begin---------------------------------------------------------------------------------First off i'll tell you that these codes will be Map/Game Type specific. What i mean by this is that if you make a code while you're in a Port/Death Match game, they wont work for a Port/Team Death Match game. With that out of the way by the end of this tutorial you'll know how to make; Flash, No Recoil(Both Weapon Specific), rapid fire, explosives, slow-mo/faster zooka, and nade launchers.
Lets Get Started With FLASH-------------------------------------------------------------------------First off make a game in
Ad-hoc mode, for this tutorial i'm going to make a Port/Death Match game. Once thats done choose the gun that you want to mod, i'll choose the
Karabiner. Now for the fun
To mod a gun you'll need to search its weapon value. Ill put them in code...
- Code:
-
AD8567E5------Thompson
1AA20FE4------BAR
9B42A47B------M1 Garand
CAE6F38C------Springfield
3D07D75C------Shotgun
496D946C------M1 Bazooka
D8F8C567------Colt45
564454F4------Allies Nade
884F2C3D------MP40
5D2EC45C------StG44
668B0716------Karabiner
BBBD860C------Gewehr
496337DE------Panzerschreck
30A9BC61------Luger
55F0F69E------Axis Nade
Since im modding the Karabiner ill search its weapon value
668B0716. When the search finishes you might get a ton of results, but dont worry! You should see 3 results starting with
0x00Fxxxxx near the top of the results. Press select and copy the address of the second result from the 3. Now paste the address into the decoder. You should now see youre weapons value followed by more and more lines of code. Right now dont worry about these, scroll
17 lines up. The Hex value should be
0x3F800000. This is your walking speed while you are holding that particular weapon. For "Flash" mod
0x3F800000 -->
0x40A00000. Now all you have to do is die and you should be faster!!!! All you have to do now is write down your new code
Now For The Actual Weapon Mods (No Recoil)-------------------------------------------------------------------------Now to eliminate recoil!! Find your weapons value again and this time go
12 lines down. This value should be anywhere in the 0x3??????? range. Just simply lower the 3 to 1 (best to just replace it all with 0x00000000) and die. Your gun shouldnt have anymore recoil. Again, write down your new code!!
Rapid Fire-------------------------------------------------------------------------Rapid fire should be the easiest to find. Simply go
1 line below your weapons value and change the first 4 values to
FFFF. So if the whole line was 0x00130005 it would now be
0xFFFF0005. And again die and hold down the R trigger. You should shoot REALLY FAST now! ;D Write down your new code as always!!
Explosives-------------------------------------------------------------------------Explosives isnt too hard but you have multiple steps! Dont worry though this will be a breeze. Simply go back to your weapon value and go
6 lines down. Change this value to
0xBC289EAE. Now go
11 more lines down and change that value to
0x00010000. Now all you have to do is DIE!!!! Once re-spawned you should now be able to shoot explosives!!! Save these two addresses and values!!!!
Slow Mo & Faster Rockets-------------------------------------------------------------------------This next mod can be added with your Explosive code to make more interesting weapon mods
Find your weapon value and go
4 lines down. For Slow-Mo Rockets change the value to
0x3C000000 and for Faster Rockets change to value to
0x6C000000. Now save your code!!!
Nade Launchers-------------------------------------------------------------------------This mod is very similar to explosives except 1 value is different.Find your weapon value and go
6 lines down. Change this value to
0xE19620AF. Now go
11 more lines down and change that value to
0x00010000. Now die, re-spawn, and shoot, your weapon should shoot nades. Once again save your code!!!!!!
Finishing Touches-------------------------------------------------------------------------You can mix-match these codes to make a decent working code. For example you can make a Thompson that has Rapid Fire, No Recoil, Explosives, and Faster Rockets!! Its all up to you. Practice and practice!!! Happy hacking!