Jump to content

45 posts in this topic

Recommended Posts

Posted
  On 9/7/2023 at 12:45 PM, ada1016 said:

Q:Is this script worked like one time thing? That, the script only get executed when the code path get there, and you have to run the script before it trigger.  For some method that happened at battle, such as adjust mana when take damage, you cannot use this script as it does not work like a hook.  Is this understand correct?

Expand  

Depends on game design, you might still have access to battle related object outside battle. However, it doesnโ€™t make much sense to cheat those object while not in battle.

  On 9/7/2023 at 12:45 PM, ada1016 said:

Q: if a method has game object in parameter, how do I loadMethods it?e.g.

public void AdjustPlayerMana(int playerIndex, int[] manaCollected, ref bool activateManaMatchTraits, bool collectedFromBoard = False, bool wasMatch = False, PuzzleTroop pAdjustmentCause) { }

Expand  

JSPlug-in does support int[] yet. For object param, you could use pointer or int64 as parameter type.

for Ref bool, you might need to test as well, not sure if it is going to take bool or pointer reference 

Posted

Hint for your, when I try to cheat mana recovery. I would try to look for any param/config defines recovery rate. 
Memory patch the rate would be the easiest way to do mana cheat.

another possibility is to look for any function that could be use to restore mana.

another possibility is to look for way to reduce mana consumption, say changing skillโ€™s mana cost.

 

if you really want to try that AdjusrPlayerMana method, change that int[] to int32. Give it a try

What game is it?

Posted
  On 9/7/2023 at 10:25 PM, Happy Secret said:

Hint for your, when I try to cheat mana recovery. I would try to look for any param/config defines recovery rate. 
Memory patch the rate would be the easiest way to do mana cheat.

another possibility is to look for any function that could be use to restore mana.

another possibility is to look for way to reduce mana consumption, say changing skillโ€™s mana cost.

 

if you really want to try that AdjusrPlayerMana method, change that int[] to int32. Give it a try

What game is it?

Expand  

This is Gem of War. https://apps.apple.com/tw/app/gems-of-war-match-3-strategy/id897954560

thank you for great advice, I will keep learning and play with it.  The thing about reseting mana are good advice, but it looks like this game is call same method to control both side (my and enemy's) mana. So when I alter the change, it affect both side.

 

 

Posted
  On 9/8/2023 at 2:20 AM, ada1016 said:

This is Gem of War. https://apps.apple.com/tw/app/gems-of-war-match-3-strategy/id897954560

thank you for great advice, I will keep learning and play with it.  The thing about reseting mana are good advice, but it looks like this game is call same method to control both side (my and enemy's) mana. So when I alter the change, it affect both side.

 

 

Expand  

Sample for your referenceโ€ฆ

https://iosddl.net/b25f42911edfaa43/H5JSPlugin_-_Gem_of_War.js

 

I guess it wonโ€™t work on PVP. But PVE cheating is easy.

Posted
  On 9/8/2023 at 2:20 AM, ada1016 said:

This is Gem of War. https://apps.apple.com/tw/app/gems-of-war-match-3-strategy/id897954560

thank you for great advice, I will keep learning and play with it.  The thing about reseting mana are good advice, but it looks like this game is call same method to control both side (my and enemy's) mana. So when I alter the change, it affect both side.

 

 

Expand  

You need to learn how to de-link.

You can see my Script above uses isAI field to determine if it is my team or enemy team. Cheat would only apply on selected team. Currently I only cheat on my team, you can debuff on enemy team as well, say make their HP as 1 (ready to die) or required Mana as 99, mean they are not going to use any skill

Posted
  On 9/8/2023 at 5:46 AM, Happy Secret said:

You need to learn how to de-link.

You can see my Script above uses isAI field to determine if it is my team or enemy team. Cheat would only apply on selected team. Currently I only cheat on my team, you can debuff on enemy team as well, say make their HP as 1 (ready to die) or required Mana as 99, mean they are not going to use any skill

Expand  

wow!  thank you sooooo much!!!!

Posted
  On 9/8/2023 at 5:46 AM, Happy Secret said:

You need to learn how to de-link.

You can see my Script above uses isAI field to determine if it is my team or enemy team. Cheat would only apply on selected team. Currently I only cheat on my team, you can debuff on enemy team as well, say make their HP as 1 (ready to die) or required Mana as 99, mean they are not going to use any skill

Expand  

and just like you mentioned, this way of cheating make it almost effortless to maintain. The game just upgraded to 7.1 and your script directly take effect with no problem

 

I really must learn this more, thank you!

Posted
  On 9/10/2023 at 1:26 PM, ada1016 said:

and just like you mentioned, this way of cheating make it almost effortless to maintain. The game just upgraded to 7.1 and your script directly take effect with no problem

 

I really must learn this more, thank you!

Expand  

Yes, unless the game developer specifically update design to target our cheat.

But this way of cheating is quite different, if you really like it, you will need to spend the effort to learn this different way of game cheating.

  • Like 1
Posted
  On 9/10/2023 at 2:21 PM, Happy Secret said:

Yes, unless the game developer specifically update design to target our cheat.

But this way of cheating is quite different, if you really like it, you will need to spend the effort to learn this different way of game cheating.

Expand  

Exactly. it is different way of thinking logic, but this is getting closer to the way Game Developer thinking, much more O-O orient 

and... I hope I am not taking too much of your time, I try to micmic your code and change the total number of turn that I can use, so I had below diff
adding  below to var cheats
    StopCount:["PuzzleUI","notUsed","ONE","SELF","ON","stopCount"]

and have below under togglecheat

                    PuzzlePlayer.stopCount = function(){
                       appendLog("this.m_nTurnNumber= "+this.m_nTurnNumber) 
                        this.m_nTurnNumber = 15;
                    }
                    let PuzzleUI = new UnityObject(PuzzlePlayer.PuzzleUI)
                    PuzzleUI.loadFields(["m_nTurnNumber","LootTurnRuneCount"])
                   // this.m_nTurnNumber = this.LootTurnRuneCount
                    appendLog("m_nTurnNumber= "+this.m_nTurnNumber+" : LootTurnRuneCount ="+this.LootTurnRuneCount)


 I thought I can print out the turn number, but always I get undefined. 

I am sure in PuzzleUI, there is such field, and in PuzzlePlayer, there is an instance of PuzzleUI

My code here https://www.icloud.com/iclouddrive/0ebWuS2833pIaaBca7M-q3viQ#H5JSPlugin_-_Gem_of_War

 

thank you so much..

 

                  
                    

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

    • Final Outpost v2.3.20 [+3 Jailed Cheats]
      Modded/Hacked App: Final Outpost By Exabyte Games Ltd
      Bundle ID: com.samclothier.DEADfense
      iTunes Store Link: https://apps.apple.com/us/app/final-outpost/id1425444801?uo=4



      ๐Ÿคฉ Hack Features

      -  Always Enough Resources
      -  Always Attain Skill
      -  No Food Consume
      • 21 replies
    • Final Outpost v2.3.20 [+3 Cheats]
      Modded/Hacked App: Final Outpost By Exabyte Games Ltd
      Bundle ID: com.samclothier.DEADfense
      iTunes Store Link: https://apps.apple.com/us/app/final-outpost/id1425444801?uo=4

       

      ๐Ÿคฉ Hack Features

      -  Always Enough Resources
      -  Always Attain Skill
      -  No Food Consume
        • Winner
      • 16 replies
    • Z Survivor: Backpack Shooter v0.65 [+2 Cheats]
      Modded/Hacked App: Z Survivor: Backpack Shooter By Tapped Ltd
      Bundle ID: com.tapped.zsurvivor
      iTunes Store Link: https://apps.apple.com/us/app/z-survivor-backpack-shooter/id6557072922?uo=4



      ๐Ÿคฉ Hack Features

      - Debug Menu (Auto Play, Skip Level and more)
      - Never Die
      - Unlimited Resource (Currency, Keys, Blueprints)
      • 15 replies
    • Z Survivor: Backpack Shooter v0.65 [+2 Jailed Cheats]
      Modded/Hacked App: Z Survivor: Backpack Shooter By Tapped Ltd
      Bundle ID: com.tapped.zsurvivor
      iTunes Store Link: https://apps.apple.com/us/app/z-survivor-backpack-shooter/id6557072922?uo=4



      ๐Ÿคฉ Hack Features

      - Debug Menu (Auto Play, Skip Level and more)
      - Never Die
      - Unlimited Resource (Currency, Keys, Blueprints)
      • 15 replies
    • Run! Goddess v1.0.23 [+4 Jailed Cheats]
      Modded/Hacked App: Run! Goddess By TOP GAMES INC.
      Bundle ID: com.topgamesinc.rg
      iTunes Store Link: https://apps.apple.com/us/app/run-goddess/id6667111749?uo=4



      ๐Ÿคฉ Hack Features

      - No Skill Cooldown
      - Slow Enemy
      - Enemy Can't Attack (Enemy Can't Do Damage)
      • 107 replies
    • Run! Goddess v1.0.23 [+4 Cheats]
      Modded/Hacked App: Run! Goddess By TOP GAMES INC.
      Bundle ID: com.topgamesinc.rg
      iTunes Store Link: https://apps.apple.com/us/app/run-goddess/id6667111749?uo=4

       

      ๐Ÿคฉ Hack Features

      - No Skill Cooldown
      - Slow Enemy
      - Enemy Can't Attack (Enemy Can't Do Damage)
       
        • Winner
      • 82 replies
    • Heroes Crew: Strategy Defense v1.0.0 [+6 Cheats]
      Modded/Hacked App: Heroes Crew: Strategy Defense By AlohaFactory
      Bundle ID: com.overdogs.heroes
      App Store Link: https://apps.apple.com/us/app/heroes-crew-strategy-defense/id6744350078?uo=4



      ๐Ÿคฉ Hack Features

      - Add Currency
      - Unlimited Items
      - Unlimited Property (Heroes, Relic etc)
      - Activate VVip (Use after tutorial and only in main menu)
      - Activate Premium Hunt Pass (Use after tutorial and only in main menu)
      - Unlimited Battle Currency (Always Will Increase)
      • 4 replies
    • Heroes Crew: Strategy Defense v1.0.0 [+6 Jailed Cheats]
      Modded/Hacked App: Heroes Crew: Strategy Defense By AlohaFactory
      Bundle ID: com.overdogs.heroes
      App Store Link: https://apps.apple.com/us/app/heroes-crew-strategy-defense/id6744350078?uo=4



      ๐Ÿคฉ Hack Features

      - Add Currency
      - Unlimited Items
      - Unlimited Property (Heroes, Relic etc)
      - Activate VVip (Use after tutorial and only in main menu)
      - Activate Premium Hunt Pass (Use after tutorial and only in main menu)
      - Unlimited Battle Currency (Always Will Increase)
      • 2 replies
    • Kingdom Rush Battles: TD Game v0.7.1 +4 Jailed Cheats [ No Tower Cost ]
      Modded/Hacked App: Kingdom Rush Battles: TD Game By Ironhide S.A.
      Bundle ID: com.ironhidegames.kingdomrush.mp
      App Store Link: https://apps.apple.com/ph/app/kingdom-rush-battles-td-game/id6746510979?uo=4

       
       

      ๐Ÿคฉ Hack Features

      - Dumb Enemy -> Disables your enemy from buying towers.
      - No Tower Build Cost -> Use with Dumb Enemy.
      - No Tower Upgrade Cost -> Use with Dumb Enemy.
      - No Tower Skill Upgrade Cost -> Use with Dumb Enemy.
      • 4 replies
    • Kingdom Rush Battles: TD Game v0.7.1 +4 Cheats [ No Tower Cost ]
      Modded/Hacked App: Kingdom Rush Battles: TD Game By Ironhide S.A.
      Bundle ID: com.ironhidegames.kingdomrush.mp
      App Store Link: https://apps.apple.com/ph/app/kingdom-rush-battles-td-game/id6746510979?uo=4

       


      ๐Ÿคฉ Hack Features

      - Dumb Enemy -> Disables your enemy from buying towers.
      - No Tower Build Cost -> Use with Dumb Enemy.
      - No Tower Upgrade Cost -> Use with Dumb Enemy.
      - No Tower Skill Upgrade Cost -> Use with Dumb Enemy.
      • 5 replies
    • (Gauntlet Idle Rpg) ๊ฑดํ‹€๋ ›: ๋ฐฉ์น˜ํ˜• ์•ก์…˜ RPG v1.32 +3 Jailed Cheats
      Modded/Hacked App: ๊ฑดํ‹€๋ ›: ๋ฐฉ์น˜ํ˜• ์•ก์…˜ RPG By Metabone Entertainment Inc.
      Bundle ID: com.metaboneent.gauntletrpg
      iTunes Store Link: https://apps.apple.com/kr/app/%EA%B1%B4%ED%8B%80%EB%A0%9B-%EB%B0%A9%EC%B9%98%ED%98%95-%EC%95%A1%EC%85%98-rpg/id6476731203?uo=4

       

       

      ๐Ÿ”ง Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      ๐Ÿš€ Hack Features

      - Damage Multiplier
      - Defense Multiplier
      - Unlimited Currencies โ†’ Spend/Gain


      ๐Ÿ Jailbreak iOS hacks: 

       

      ๐Ÿ“ฅ iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      ๐Ÿ“– PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example.
      STEP 2: Download Sideloadly and install it on your Windows or Mac.
      STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 5: Enter your Apple Account email when prompted, then press โ€œStart.โ€ Youโ€™ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 7: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles / VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust email@iosgods.com'.
      STEP 8: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue 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
      • 42 replies
    • (Gauntlet Idle Rpg) ๊ฑดํ‹€๋ ›: ๋ฐฉ์น˜ํ˜• ์•ก์…˜ RPG v1.32 +3 Cheats
      Modded/Hacked App: ๊ฑดํ‹€๋ ›: ๋ฐฉ์น˜ํ˜• ์•ก์…˜ RPG By Metabone Entertainment Inc.
      Bundle ID: com.metaboneent.gauntletrpg
      iTunes Store Link: https://apps.apple.com/kr/app/%EA%B1%B4%ED%8B%80%EB%A0%9B-%EB%B0%A9%EC%B9%98%ED%98%95-%EC%95%A1%EC%85%98-rpg/id6476731203?uo=4

       

       

      ๐Ÿ”ง Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Cydia, Sileo or Zebra).

       

      ๐Ÿš€ Hack Features

      - Damage Multiplier
      - Defense Multiplier
      - Unlimited Currencies โ†’ Spend/Gain


      ๐Ÿ For Non-Jailbroken & No Jailbreak required hacks: 

       

      ๐Ÿ“ฅ iOS Hack Download Link


      Hidden Content

      Download Hack







       

      ๐Ÿ“– iOS Installation Instructions

      STEP 1: Download the .deb 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 needed, tap on the downloaded file again, then select โ€˜Normal Installโ€™ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesnโ€™t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue 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

       

      ๐Ÿ”— More iOS App Hacks & Android Modded APKs

      If youโ€™re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOSGods No Jailbreak Section for a variety of modded games and apps for non-jailbroken iOS devices.

      Need Modded Android APKs too? Head over to the iOSGods Android Section for custom APK mods, cheats, and more.
      • 24 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