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
08-08-2013, 08:00 PM #11
How do you enter this in debugger?

Doubt you'll respond since Noone ever does but always worth a try.

If you do reply, can you set this class w any gun u want.
08-13-2013, 12:57 AM #12
StangModz
Bounty hunter
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:
RpkMollyz
DPhracker/DPH-MODZ
Regedicall
Silvr99
eXiLeModz--
ImSoCool


[ATTACH=CONFIG]26379[/ATTACH]
(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


Doesn't work for me, classes are still normal afterwards... What is the prob here?
08-13-2013, 11:38 AM #13
Thanks!
08-14-2013, 04:01 PM #14
Order Fries
Save Point
I can do this in HxD right? It says i cant find "0x01c1985f"
08-14-2013, 10:40 PM #15
MrHackerDude1
At least I can fight
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:
RpkMollyz
DPhracker/DPH-MODZ
Regedicall
Silvr99
eXiLeModz--
ImSoCool


[ATTACH=CONFIG]26379[/ATTACH]
(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


nice job bro
08-15-2013, 01:52 PM #16
The tutorial is how you enter it in the debugger... like i said, search the "offset" of the class you want. Then "02 00 00 00 04 00 00 00 06 00 00 00" and at the second 00 after 06, put 4F... So --> 02 00 00 00 04 00 00 00 06 00 4F 00. And you can put anything for the primary weapon, but your primary won't be used. Put Overkill on as your 2nd perk if you want a primary with invisibility... I would recommend using "ASSASSIN" though so no one can see you gamertag above your head :/.
08-20-2013, 12:43 PM #17
Is this for only jailbreak ps3? Cause i want the god mode so bad and i can't find anyone who would do that for me i don't have a jailbreak ps3 and im a girl so i would like if one of u guys could help me out. To give me the godmode. Help help help.


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:
RpkMollyz
DPhracker/DPH-MODZ
Regedicall
Silvr99
eXiLeModz--
ImSoCool


[ATTACH=CONFIG]26379[/ATTACH]
(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
08-21-2013, 05:59 AM #18
ygbk12
Bounty hunter
dope!!!!!! nice btw
09-17-2013, 11:24 PM #19
niice

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo