Jump to content

1 post in this topic

Recommended Posts

Posted

I'm trying to use the ObscuredInt script to change the minute of this game, but when I add the script nothing happens, the bullets don't change, what's wrong with my script?

 

C++:
int GetObscuredIntABValue(uint64_t location){
    int cryptoKey = *(int *)location;
    int obfuscatedABValue = *(int *)(location + 0x164);


    return obfuscatedABValue ^ cryptoKey;
}

void SetObscuredIntABValue(uint64_t location, int value){
    int cryptoKey = *(int *)location;

    *(int *)(location + 0x164) = value ^ cryptoKey;
}

void (*orig_Update)(void* instance);
void Update(void* instance) {

    if (instance != NULL && hack2)
    {
        SetObscuredIntABValue((uint64_t)instance + 0x164,99999);
    }

    return orig_Update(instance);
}


 MSHookFunction((void *)getAbsoluteAddress(targetLibName,string2Offset(OBFUSCATE_KEY("0x52BA74",'?'))),(void *) Update,(void **)&orig_Update);

 

this for field ammo,clips

 

// Token: 0x04003198 RID: 12696

    [Token(Token = "0x4003198")]

    [FieldOffset(Offset = "0x158")]

    public ObscuredIntAB bullets;



    // Token: 0x04003199 RID: 12697

    [Token(Token = "0x4003199")]

    [FieldOffset(Offset = "0x164")]

    public ObscuredIntAB clips;

 

this for script encription

 

using System;
using Il2CppDummyDll;

namespace kube.cheat
{
    // Token: 0x020007C2 RID: 1986
    [Token(Token = "0x20007C2")]
    public struct ObscuredIntAB : IEquatable<ObscuredIntAB>, IFormattable
    {
        // Token: 0x060035D7 RID: 13783 RVA: 0x00002050 File Offset: 0x00000250
        [Token(Token = "0x60035D7")]
        [Address(RVA = "0x190D460", Offset = "0x190D460", VA = "0x190D460")]
        private ObscuredIntAB(int value)
        {
        }

        // Token: 0x060035D8 RID: 13784 RVA: 0x00002050 File Offset: 0x00000250
        [Token(Token = "0x60035D8")]
        [Address(RVA = "0x190D4FC", Offset = "0x190D4FC", VA = "0x190D4FC")]
        public void Noise()
        {
        }

        // Token: 0x060035D9 RID: 13785 RVA: 0x0000EBE0 File Offset: 0x0000CDE0
        [Token(Token = "0x60035D9")]
        [Address(RVA = "0x190D5EC", Offset = "0x190D5EC", VA = "0x190D5EC")]
        private int InternalDecrypt()
        {
            return 0;
        }

        // Token: 0x060035DA RID: 13786 RVA: 0x0000EBF8 File Offset: 0x0000CDF8
        [Token(Token = "0x60035DA")]
        [Address(RVA = "0x190D6E8", Offset = "0x190D6E8", VA = "0x190D6E8")]
        public static implicit operator ObscuredIntAB(int value)
        {
            return default(ObscuredIntAB);
        }

        // Token: 0x060035DB RID: 13787 RVA: 0x0000EC10 File Offset: 0x0000CE10
        [Token(Token = "0x60035DB")]
        [Address(RVA = "0x190D708", Offset = "0x190D708", VA = "0x190D708")]
        public static implicit operator int(ObscuredIntAB value)
        {
            return 0;
        }

        // Token: 0x060035DC RID: 13788 RVA: 0x0000EC28 File Offset: 0x0000CE28
        [Token(Token = "0x60035DC")]
        [Address(RVA = "0x190D728", Offset = "0x190D728", VA = "0x190D728")]
        public static ObscuredIntAB operator ++(ObscuredIntAB input)
        {
            return default(ObscuredIntAB);
        }

        // Token: 0x060035DD RID: 13789 RVA: 0x0000EC40 File Offset: 0x0000CE40
        [Token(Token = "0x60035DD")]
        [Address(RVA = "0x190D7EC", Offset = "0x190D7EC", VA = "0x190D7EC")]
        public static ObscuredIntAB operator --(ObscuredIntAB input)
        {
            return default(ObscuredIntAB);
        }

        // Token: 0x060035DE RID: 13790 RVA: 0x0000EC58 File Offset: 0x0000CE58
        [Token(Token = "0x60035DE")]
        [Address(RVA = "0x190D8AC", Offset = "0x190D8AC", VA = "0x190D8AC", Slot = "0")]
        public override bool Equals(object obj)
        {
            return default(bool);
        }

        // Token: 0x060035DF RID: 13791 RVA: 0x0000EC70 File Offset: 0x0000CE70
        [Token(Token = "0x60035DF")]
        [Address(RVA = "0x190D964", Offset = "0x190D964", VA = "0x190D964", Slot = "4")]
        public bool Equals(ObscuredIntAB obj)
        {
            return default(bool);
        }

        // Token: 0x060035E0 RID: 13792 RVA: 0x0000EC88 File Offset: 0x0000CE88
        [Token(Token = "0x60035E0")]
        [Address(RVA = "0x190D998", Offset = "0x190D998", VA = "0x190D998", Slot = "2")]
        public override int GetHashCode()
        {
            return 0;
        }

        // Token: 0x060035E1 RID: 13793 RVA: 0x0000206A File Offset: 0x0000026A
        [Token(Token = "0x60035E1")]
        [Address(RVA = "0x190D9C0", Offset = "0x190D9C0", VA = "0x190D9C0", Slot = "3")]
        public override string ToString()
        {
            return null;
        }

        // Token: 0x060035E2 RID: 13794 RVA: 0x0000206A File Offset: 0x0000026A
        [Token(Token = "0x60035E2")]
        [Address(RVA = "0x190D9E8", Offset = "0x190D9E8", VA = "0x190D9E8")]
        public string ToString(string format)
        {
            return null;
        }

        // Token: 0x060035E3 RID: 13795 RVA: 0x0000206A File Offset: 0x0000026A
        [Token(Token = "0x60035E3")]
        [Address(RVA = "0x190DA18", Offset = "0x190DA18", VA = "0x190DA18")]
        public string ToString(IFormatProvider provider)
        {
            return null;
        }

        // Token: 0x060035E4 RID: 13796 RVA: 0x0000206A File Offset: 0x0000026A
        [Token(Token = "0x60035E4")]
        [Address(RVA = "0x190DA48", Offset = "0x190DA48", VA = "0x190DA48", Slot = "5")]
        public string ToString(string format, IFormatProvider provider)
        {
            return null;
        }

        // Token: 0x04003B18 RID: 15128
        [Token(Token = "0x4003B18")]
        [FieldOffset(Offset = "0x0")]
        private static int cryptoKey;

        // Token: 0x04003B19 RID: 15129
        [Token(Token = "0x4003B19")]
        [FieldOffset(Offset = "0x0")]
        private int hvh;

        // Token: 0x04003B1A RID: 15130
        [Token(Token = "0x4003B1A")]
        [FieldOffset(Offset = "0x4")]
        private int hvl;

        // Token: 0x04003B1B RID: 15131
        [Token(Token = "0x4003B1B")]
        [FieldOffset(Offset = "0x8")]
        private int fakeValue;
    }
}

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Ball in! Pinball Defense v1.0.5 [ +6 Jailed ] Currency Max
      Modded/Hacked App: Ball in! Pinball Defense By Neptune Company
      Bundle ID: com.nep.tr.hybrid.pinballdefense
      App Store Link: https://apps.apple.com/us/app/ball-in-pinball-defense/id6767486424?uo=4

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      - Unlimited Energy
      - Unlimited Card Exp
      - ATK MAX
      - Skill Active / 1 Hit
      • 0 replies
    • Ball in! Pinball Defense v1.0.5 [ +6 Cheats ] Currency Max
      Modded/Hacked App: Ball in! Pinball Defense By Neptune Company
      Bundle ID: com.nep.tr.hybrid.pinballdefense
      App Store Link: https://apps.apple.com/us/app/ball-in-pinball-defense/id6767486424?uo=4

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      - Unlimited Energy
      - Unlimited Card Exp
      - ATK MAX
      - Skill Active / 1 Hit
      • 0 replies
    • Brick Fight v2.1.7 [ +9 APK MOD ] Currency Max
      Mod APK Game Name: Brick Fight
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.yuyue.guardminingsite&hl=en

      🤩 Hack Features

      - Unlimited Skill Card Exp
      - Brick Freeze
      Talents Stats
      - ATK MAX
      - HP MAX
      - POWER MAX
      • 0 replies
    • Brick Fight v2.1.7 [ +9 Cheats ] Currency Max
      Modded/Hacked App: Brick Fight By Voodoo
      Bundle ID: com.yuyue.guardminingsite
      App Store Link: https://apps.apple.com/us/app/brick-fight/id6738034364?uo=4

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      - Unlimited Energy
      - Unlimited Keys +3
      - Unlimited Skill Card Exp
      - Brick Freeze
      Talents Stats
      - ATK MAX
      - HP MAX
      - POWER MAX
      • 1 reply
    • Brick Fight v2.1.7 [ +9 Jailed ] Currency Max
      Modded/Hacked App: Brick Fight By Voodoo
      Bundle ID: com.yuyue.guardminingsite
      App Store Link: https://apps.apple.com/us/app/brick-fight/id6738034364?uo=4

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      - Unlimited Energy
      - Unlimited Keys +3
      - Unlimited Skill Card Exp
      - Brick Freeze
      Talents Stats
      - ATK MAX
      - HP MAX
      - POWER MAX
      • 1 reply
    • Lost Twins 2 +2 Jailed Cheats [ Full Game Unlocked ]
      Modded/Hacked App: Lost Twins 2 By PLAYDEW PRIVATE LIMITED
      Bundle ID: com.playdew.losttwins2
      App Store Link: https://apps.apple.com/us/app/lost-twins-2/id6757780210?uo=4

       

      🤩 Hack Features

      - Unlock Full Game -> Head into the shop, press on the Unlock Game purchase, then cancel the in-app purchase.*
      - Unlock x10 Coins -> Head into the shop, press on the x10 Coins purchase, then cancel the in-app purchase.*

      * - Only enable 1 feature at a time.
      • 1 reply
    • Astra Squad +3 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Astra Squad By MEGAGIGA GAMES BILISIM AS
      Bundle ID: com.astra.squad
      App Store Link: https://apps.apple.com/us/app/astra-squad/id6779563769?uo=4

       


      🤩 Hack Features

      - Currency Modifier -> Earn some.
      - Tool Damage Multiplier
      - No Tool Level Requirement
        • Informative
      • 4 replies
    • DIGIMON UP JP ( デジモンUP ) +3 Mods [ Damage & Defence ]
      Mod APK Game Name: デジモンUP By Bandai Namco Entertainment Inc.
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.bandainamcoent.dgup_jp

       

      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      • 7 replies
    • DIGIMON UP +3 Mods [ Damage & Defence ]
      Mod APK Game Name: DIGIMON UP By Bandai Namco Entertainment Inc.
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.bandainamcoent.dgup_ww

       

      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
        • Like
      • 22 replies
    • DIGIMON UP JP ( デジモンUP ) +3 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: デジモンUP By Bandai Namco Entertainment Inc.
      Bundle ID: jp.co.bandainamcoent.BNEI0452
      App Store Link: https://apps.apple.com/jp/app/%E3%83%87%E3%82%B8%E3%83%A2%E3%83%B3up/id6756247422?uo=4

       

      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      • 1 reply
    • DIGIMON UP +3 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: DIGIMON UP By Bandai Namco Entertainment Inc.
      Bundle ID: jp.co.bandainamcoent.BNEI0442
      App Store Link: https://apps.apple.com/us/app/digimon-up/id6756247787?uo=4

       

      🤩 Hack Features

      - Damage Multiplier 
      - Defence Multiplier
      - God Mode
      • 5 replies
    • Tiny Bookshop +2 Mods [ Full Game Unlocked ]
      Mod APK Game Name: Tiny Bookshop By Skystone Games
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.neoludic.tbs

       

      🤩 Hack Features

      - Unlimited Money & Books -> Earn or spend some.
      -- Full Game Unlocked
      • 0 replies
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines