Post: How the MW3 Invisibile Godmode Classes work, and the offsets
08-06-2013, 05:20 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); For anyone that wants to know how to do invisibility-Godmode Classes in the debugger... Go to this offset -> 0x01c1985f and put 4F. Thats it. (Thats only for CustomClass 1 though)

Trustworthy Friends:

DPhracker/DPH-MODZ
Regedicall
ImSoCool


You must login or register to view this content.


Here's a Function I made for you to use:
    
public class address
{
public static uint
GodmodeClassaddress = 0x01c1985f,
CCPerk1 = 0x01c1984f,
CCPerk2 = CCPerk1 + 0x2,
CCPerk3 = CCPerk2 + 0x2,
SpecialistOnoff = 0x01c19826;
}
private void GodModeONFUNC(int CustomClassNumber, bool ONOFF)
{
if (ONOFF == true)
{
PS3.Extension.WriteByte(address.SpecialistOnoff, 0x61);
PS3.Extension.WriteBytes(address.CCPerk1 + ((uint)CustomClassNumber * 0x62), new byte[] { 0x21, 0x00, 0x2B, 0x00, 0x2A });
PS3.Extension.WriteByte(address.GodmodeClassaddress * ((uint)CustomClassNumber * 0x62), 0x4F);
}
else
{
PS3.Extension.WriteByte(address.GodmodeClassaddress * ((uint)CustomClassNumber * 0x62), 0x00);
}
}

    
/*How To Use:*/
//Example with a Checkbox:
if (checkBox30.Checked)
{
GodModeONFUNC(1, true);
}
else
{
GodModeONFUNC(1, false);
}


Turn Specialist on + add perks:

Custom Class 1 Specialist On: 0x01c19826
Custom Class 1 Set Perk 1: 0x01c1984f
Custom Class 1 Set Perk 2: 0x01c1984f + 0x2
Custom Class 1 Set Perk 3: 0x01c1984f + 0x4
Blind Eye + SitRep + Blast Shield:
PS3.Extension.WriteBytes(0x01c1984f, new bytes {0x21, 0x00, 0x2B, 0x00, 0x2A});


(4F is a variable, and can be changed to another offset and still work... But for the sake of the tutorial, im using 4F)
Put 4F for the following for Invisibility Godmode Classes.:
Custom Class 1 - 0x01c1985f
Custom Class 2 - 0x01c198c1
Custom Class 3 - 0x01c19923
Custom Class 4 - 0x01c19985
Custom Class 5 - 0x01c199e7
Custom Class 6 - 0x01c19a49
Custom Class 7 - 0x01c19aab
Custom Class 8 - 0x01c19b0d
Custom Class 9 - 0x01c19b6f
Custom Class 10 - 0x01c19bd1
Custom Class 11 - 0x01c19c33
Custom Class 12 - 0x01c19c95
Custom Class 13 - 0x01c19cf7
Custom Class 14 - 0x01c19d59
Custom Class 15 - 0x01c19dbb
To remove this from any class, just take specialist off... The third perk in specialist has a high killstreak and causes this glitch to work.
You must login or register to view this content.

-- You'll See 02 00 00 00 04 00 00 00 06 00 00 00
@ the second 00 after 06, put 4F... So --> 02 00 00 00 04 00 00 00 06 00 4F 00
(adsbygoogle = window.adsbygoogle || []).push({});

The following 20 users say thank you to BaSs_HaXoR for this useful post:

-JM-, -SuperMan, acceso12, AlabamaHit, Alexon, chuck54321, Chxii, DylanOc1, HackersForRent, i6oz, Mango_Knife, metoshkata, milky4444, MrGodHandz, John, SeemsLegit_, SlowGrind, ThePaaqoHD, TiDx, ygbk12

The following 2 users groaned at BaSs_HaXoR for this awful post:

Callumeleyy, iTruceFret
09-04-2014, 02:12 AM #29
Artsy
Can’t trickshot me!
can you have a god mode/invisible class with a AUG in it? and if you can can you send me the offset/code
09-20-2014, 10:54 AM #30
Default Avatar
lee-_13
Guest
do you need to be jailbroke
09-26-2014, 09:36 PM #31
anthonything
Space Ninja
You should also tell them how the multiplier causes the killstreak count to go too high, and because the game loads the killstreak before the character entity or the characters life, it times out and spawns them invisible.

The following user thanked anthonything for this useful post:

MayhemLobbiez
11-17-2014, 04:23 AM #32
Originally posted by HaXoR View Post
For anyone that wants to know how to do invisibility-Godmode Classes in the debugger... Go to this offset -> 0x01c1985f and put 4F. Thats it. (Thats only for CustomClass 1 though)

Trustworthy Friends:

DPhracker/DPH-MODZ
Regedicall
ImSoCool


[ATTACH=CONFIG]26379[/ATTACH]


Here's a Function I made for you to use:
    
public class address
{
public static uint
GodmodeClassaddress = 0x01c1985f,
CCPerk1 = 0x01c1984f,
CCPerk2 = CCPerk1 + 0x2,
CCPerk3 = CCPerk2 + 0x2,
SpecialistOnoff = 0x01c19826;
}
private void GodModeONFUNC(int CustomClassNumber, bool ONOFF)
{
if (ONOFF == true)
{
PS3.Extension.WriteByte(address.SpecialistOnoff, 0x61);
PS3.Extension.WriteBytes(address.CCPerk1 + ((uint)CustomClassNumber * 0x62), new byte[] { 0x21, 0x00, 0x2B, 0x00, 0x2A });
PS3.Extension.WriteByte(address.GodmodeClassaddress * ((uint)CustomClassNumber * 0x62), 0x4F);
}
else
{
PS3.Extension.WriteByte(address.GodmodeClassaddress * ((uint)CustomClassNumber * 0x62), 0x00);
}
}

    
/*How To Use:*/
//Example with a Checkbox:
if (checkBox30.Checked)
{
GodModeONFUNC(1, true);
}
else
{
GodModeONFUNC(1, false);
}


Custom Class 1 Specialist On: 0x01c19826
Custom Class 1 Set Perk 1: 0x01c1984f
Custom Class 1 Set Perk 2: 0x01c1984f + 0x2
Custom Class 1 Set Perk 3: 0x01c1984f + 0x4
Blind Eye + SitRep + Blast Shield:
PS3.Extension.WriteBytes(0x01c1984f, new bytes {0x21, 0x00, 0x2B, 0x00, 0x2A});

(4F is a variable, and can be changed to another offset and still work... But for the sake of the tutorial, im using 4F)
Put 4F for the following for Invisibility Godmode Classes.:
Custom Class 1 - 0x01c1985f
Custom Class 2 - 0x01c198c1
Custom Class 3 - 0x01c19923
Custom Class 4 - 0x01c19985
Custom Class 5 - 0x01c199e7
Custom Class 6 - 0x01c19a49
Custom Class 7 - 0x01c19aab
Custom Class 8 - 0x01c19b0d
Custom Class 9 - 0x01c19b6f
Custom Class 10 - 0x01c19bd1
Custom Class 11 - 0x01c19c33
Custom Class 12 - 0x01c19c95
Custom Class 13 - 0x01c19cf7
Custom Class 14 - 0x01c19d59
Custom Class 15 - 0x01c19dbb
To remove this from any class, just take specialist off... The third perk in specialist has a high killstreak and causes this glitch to work.
You must login or register to view this content.

-- You'll See 02 00 00 00 04 00 00 00 06 00 00 00
@ the second 00 after 06, put 4F... So --> 02 00 00 00 04 00 00 00 06 00 4F 00

Added a function. In case anyone still wanted to use this. :/

The following user thanked BaSs_HaXoR for this useful post:

One
12-05-2014, 07:22 PM #33
Jewels
I’m too L33T
I hate MW3 becasue of this.....

The following user thanked Jewels for this useful post:

thahitcrew
12-21-2014, 04:44 PM #34
xJuno
Banned
Ah ok....

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo