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);
}
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);
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.