Jump to content

help me with this question ObscuredInt


1 post in this topic

Recommended Posts

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;
    }
}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below. For more information, please read our Posting Guidelines.
Reply to this topic... Posting Guidelines

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Our picks

    • Animals BAM BAM v1.2 +2 Jailed Cheats [ God / O-HK ]
      Modded/Hacked App: Animals BAM BAM By Foga Tech Limited
      Bundle ID: com.foga.abb.ios
      iTunes Store Link: https://apps.apple.com/ph/app/animals-bam-bam/id6475953105?uo=4


      Hack Features:
      - God Mode
      - x31 Damage


      Jailbreak required hack(s): [Mod Menu Hack] Animals BAM BAM v1.2 +3 Cheats [ God / O-HK ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 1 reply
    • Animals BAM BAM v1.2 +3 Cheats [ God / O-HK ]
      Modded/Hacked App: Animals BAM BAM By Foga Tech Limited
      Bundle ID: com.foga.abb.ios
      iTunes Store Link: https://apps.apple.com/ph/app/animals-bam-bam/id6475953105?uo=4


      Hack Features:
      - God Mode
      - x5 Damage
      - x31 Damage
      - Unlimited Drop Rewards


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Animals BAM BAM v1.2 +2 Jailed Cheats [ God / O-HK ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 2 replies
    • Raising Sword Shield Girl - 검방녀 키우기 v1.0.41 +3 Cheats
      Modded/Hacked App: 검방녀 키우기 By CodeDragon Co., LTD.
      Bundle ID: com.studiocodedragon.projectss
      iTunes Store Link: https://apps.apple.com/kr/app/%EA%B2%80%EB%B0%A9%EB%85%80-%ED%82%A4%EC%9A%B0%EA%B8%B0/id6473782850?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Freeze Currencies
      - EXP Multiplier


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 33 replies
    • Botworld Adventure v1.22.3 +1 Cheat
      Modded/Hacked App: Botworld Adventure By Featherweight Games Pty Limited
      Bundle ID: com.featherweightgames.fx
      iTunes Store Link: https://apps.apple.com/us/app/botworld-adventure/id1456063997?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - SRDebug Menu -> Settings -> Tap On Credit


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 118 replies
    • Archer Hunter: Master of Arrow v0.22.262 +2 Cheats
      Modded/Hacked App: Archer Hunter: Master of Arrow By Suga Pte. Ltd.
      Bundle ID: co.imba.archero
      iTunes Store Link: https://apps.apple.com/us/app/archer-hunter-master-of-arrow/id1543119725?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia or Sileo).


      Hack Features:
      - one hit kill
      - god mode




      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above.
      STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice.
      STEP 3: Using Filza or iFile, browse to where you saved the downloaded .deb file and tap on it.
      STEP 4: Once you tap on the file, you will need to press on 'Install' or 'Installer' from the options on your screen.
      STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 6: If the hack is a Mod Menu, which is usually the case nowadays, the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 7: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 146 replies
    • Idle RPG Agent of Adventure v5.2.2 +3 Cheats
      Modded/Hacked App: Idle RPG Agent of Adventure By atsushi ichikawa
      Bundle ID: com.TownSoft.agentofadventure3
      iTunes Store Link: https://apps.apple.com/us/app/idle-rpg-agent-of-adventure/id6473228316?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Unlimited Crasft Stone -> Increase When Use
      - Unlimited Gold -> Increase When Use
      - Unlimited Prayer -> Increase When Use


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 24 replies
    • Office Cat Tycoon: Idle games v1.0.10 +1 Cheat
      Modded/Hacked App: Office Cat Tycoon: Idle games By treeplla Inc.
      Bundle ID: com.tree.idle.cat.office
      iTunes Store Link: https://apps.apple.com/us/app/office-cat-tycoon-idle-games/id6471960010?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Reward Multiplier*

      *Turn Off When You Get Enough Currencies Otherwise It'll Go Negative


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 12 replies
    • Gridpunk - Epic PvP Arena v1.1.13 +4 Cheats
      Modded/Hacked App: Gridpunk - Epic PvP Arena By Dan Catalin Popa
      Bundle ID: com.NeverGames.Gridpunk
      iTunes Store Link: https://apps.apple.com/us/app/gridpunk-epic-pvp-arena/id6449671781?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Damage Multiplier
      - God Mode
      - Loot Multiplier
      - Freeze Currencies


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 134 replies
    • Delusion: Tactical Idle RPG v1.0.14 +1 Cheat
      Modded/Hacked App: Delusion: Tactical Idle RPG By SuperPlanet corp.
      Bundle ID: com.superplanet.delusion
      iTunes Store Link: https://apps.apple.com/us/app/delusion-tactical-idle-rpg/id6496342351?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Reward Multiplier
      Hack tested on Dopamine 2.0 Rootless!!!


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 25 replies
    • Idle Bank Tycoon: Money Empire v1.29.2 +2 Cheats
      Modded/Hacked App: Idle Bank Tycoon: Money Empire By Kolibri Games GmbH
      Bundle ID: com.luckyskeletonstudios.idlebanktycoon
      iTunes Store Link: https://apps.apple.com/us/app/idle-bank-tycoon-money-empire/id1645281275?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Free iAP
      - Unlimited Currencies // Use even you have 0 Currencies


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 141 replies
    • Nonstop Knight 2 Cheats v3.0.8 +4 [ God Mode & More ]
      Modded/Hacked App: Nonstop Knight 2 by Flaregames GmbH
      Bundle ID: com.koplagames.kopla02
      iTunes Store Link: https://itunes.apple.com/au/app/nonstop-knight-2/id1444887980?mt=8&uo=4&at=1010lce4



      Hack Features:
      - God Mode
      - OHK
      - Instant Skill
      - Infinite MP
       

      Hack Download Link: https://iosgods.com/topic/99783-arm64-nonstop-knight-2-cheats-v130-4/
        • Informative
      • 1,543 replies
    • Gangstar Vegas Cheats v7.2.0 +4
      Modded/Hacked App: Gangstar Vegas By Gameloft
      Bundle ID: com.gameloft.gangstar4
      iTunes Store Link: https://apps.apple.com/us/app/gangstar-vegas/id571393580?uo=4


      Hack Features:
      - Infinite Currencies
      - Infinite Run ( To stop running turn off in menu then click run again )
      - Infinite Ammo / No Reload ( Required re-launching the game after purchasing new gun and enabled in menu before load into the game )
      - No Cops


      NOTE: Turn off wifi before playing

      iOS Hack Download Link: https://iosgods.com/topic/147734-gangstar-vegas-cheats-v530-4/
      • 927 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