Jump to content

36 posts in this topic

Recommended Posts

Posted
5 hours ago, shmoo said:

That only worked on one game for me. They aren't the cause of your linked health. Its a headache for me too lol its very annoying.

Didn't you run into this in many games? I noticed that all the functions that had "HealthComponent" always was shared with the enemies. And some of the "PlayerComponent" weren't connected to the enemy in any way.

  • Replies 35
  • Created
  • Last Reply

Top Posters In This Topic

Posted
3 hours ago, Ynotsend said:

Didn't you run into this in many games? I noticed that all the functions that had "HealthComponent" always was shared with the enemies. And some of the "PlayerComponent" weren't connected to the enemy in any way.

How are you seeing that

Posted
Just now, shmoo said:

How are you seeing that

I compare everything to the android version of the game, which has actual names for the functions. It makes everything wayyyyy easier.

Posted
2 minutes ago, Ynotsend said:

I compare everything to the android version of the game, which has actual names for the functions. It makes everything wayyyyy easier.

Well if you actually challenged yourself you could figure out things on your own and your own methods that what I did

Posted
Just now, shmoo said:

Well if you actually challenged yourself you could figure out things on your own and your own methods that what I did

 

Just now, shmoo said:

Well if you actually challenged yourself you could figure out things on your own and your own methods that what I did

Well, I am running out of options. Remember when you told me about EOR? That literally got me exactly were I wanted to be, and I ended up hacking the game score. But FOR THIS, ANYTHING THAT RELATES TO NOT DIEING IS ALWAYS SHARED WITH THE ENEMY.:wallbash::wallbash::wallbash:Except for fall damage which I was able to prevent, but is so useless, since fall damage subtracts very little health.

Posted
2 minutes ago, Ynotsend said:

 

Well, I am running out of options. Remember when you told me about EOR? That literally got me exactly were I wanted to be, and I ended up hacking the game score. But FOR THIS, ANYTHING THAT RELATES TO NOT DIEING IS ALWAYS SHARED WITH THE ENEMY.:wallbash::wallbash::wallbash:Except for fall damage which I was able to prevent, but is so useless, since fall damage subtracts very little health.

If you have an offset for fall damage, why not make it increase your health by a ton if you can't figure out how to unlink? The only downside is that you'd have to make yourself fall to apply the hack but I think its doable

Posted
Just now, shmoo said:

If you have an offset for fall damage, why not make it increase your health by a ton if you can't figure out how to unlink? The only downside is that you'd have to make yourself fall to apply the hack but I think its doable

That is exactly why I tried to do. There was a VSUB.F32 which is apparently what subtracts my health when I fall. I NOP'D it and I no longer receive fall damage. But when I changed it to VADD.F32(with the correct registers), it subtracted even more health.:yuck:

Posted (edited)
32 minutes ago, Ynotsend said:

That is exactly why I tried to do. There was a VSUB.F32 which is apparently what subtracts my health when I fall. I NOP'D it and I no longer receive fall damage. But when I changed it to VADD.F32(with the correct registers), it subtracted even more health.:yuck:

that doesn't sound right at all. Health has to be positive. if the health that was to be subtracted was a negative number (which would prove why changing it to VADD subtracts more health) by the rules of subtraction, when you get hit your health should increase, not decrease. Here are two cases:

First case: you have 100 health and the enemy hits you and that enemy deals 20 damage. Lets say that VSUB.F32 D0, D0, D1 is your instruction (D0 = current health, D1 = health to be taken)

100 (D0) - 20 (D1) = 80 (now D0, your current health)

changing it to VADD.F32 should make your health 120 (as I'm sure you know)

 

Second case: for some reason the game stores your health and the monster damage as negative. Same rules as before

-100 (D0) - (-20 (D1)) = -80 (now D0)

changing it to VADD.F32

-100 (D0) + -20 (D1) = -120 (now D0) makes your health even less???.

 

Third case: the game stores your health as positive and the monster health as negative, which wouldn't even make sense because you stated that the original instruction was subtracting, so the calculation would go as follows:

100 (D0) - (-20 (D1)) = 120 (D0, you get health when the monster hits you in the unmodded game????)

Changing it to add the values:

100 (D0) + (-20 (D1)) = 80 (D0, your health)

But now, when you mod it, the game now preforms the health calculation as normal which is not what you said happened.

 

Fourth case: for some insane reason the game stores your health as negative and monster health as positive.

-100 (D0) - 20 (D1) = -120 (D0, now your health)

Why would the developers keep subtracting 20 from a negative number? They would have no way of checking when you actually ran out of health!

Changing it to add:

-100 (D0) + 20 (D1) = -80 (D0, now your health)

(okay this kind of makes sense, but ONLY if the original instruction was not subtracting.)

-----

I smell bs on your part. I do not believe that you have actually modded nova 3. I think you're one of those people that try and learn this, realize it is too hard, then try and take the easier path (and I can name more people than just you and I bet you guys know who you are) by using tools to show function names or compare against an Android game that has function names already visible. Then you get angry because this isn't coming to you as fast as you'd like it and spam help/support trying to get help on a topic and various things that you don't understand much at all. Do you really think this can be learned by making it as easy as possible for yourself? It took me more than a year and a half to get a good grip on IDA and it has paid off. I am discovering new ways to mod games that haven't been done before and finding my own methods to modding them.

"Oh look shmoo back at it again with his huge ego not believing me because he thinks he's better than me" no, I don't believe you because what you say doesn't make any sense at all.

Updated by Guest
Posted

-Speed hack

-Add on hack

-Radar hack

-Score hack

-Enemies stay in one place(no network errors)

-Add 10 bullets per shot

-Jetpack hack

-Money hack

-No timer on consumables

I have more, but they are just recreations.

26 minutes ago, shmoo said:

that doesn't sound right at all. Health has to be positive. if the health that was to be subtracted was a negative number (which would prove why changing it to VADD subtracts more health) by the rules of subtraction, when you get hit your health should increase, not decrease. Here are two cases:

First case: you have 100 health and the enemy hits you and that enemy deals 20 damage. Lets say that VSUB.F32 D0, D0, D1 is your instruction (D0 = current health, D1 = health to be taken)

100 (D0) - 20 (D1) = 80 (now D0, your current health)

changing it to VADD.F32 should make your health 120 (as I'm sure you know)

 

Second case: for some reason the game stores your health and the monster damage as negative. Same rules as before

-100 (D0) - (-20 (D1)) = -80 (now D0)

changing it to VADD.F32

-100 (D0) + -20 (D1) = -120 (now D0) makes your health even less???.

 

Third case: the game stores your health as positive and the monster health as negative, which wouldn't even make sense because you stated that the original instruction was subtracting, so the calculation would go as follows:

100 (D0) - (-20 (D1)) = 120 (D0, you get health when the monster hits you in the unmodded game????)

Changing it to add the values:

100 (D0) + (-20 (D1)) = 80 (D0, your health)

But now, when you mod it, the game now preforms the health calculation as normal which is not what you said happened.

 

Fourth case: for some insane reason the game stores your health as negative and monster health as positive.

-100 (D0) - 20 (D1) = -120 (D0, now your health)

Why would the developers keep subtracting 20 from a negative number? They would have no way of checking when you actually ran out of health!

Changing it to add:

-100 (D0) + 20 (D1) = -80 (D0, now your health)

(okay this kind of makes sense, but ONLY if the original instruction was not subtracting.)

-----

I smell bs on your part. I do not believe that you have actually modded nova 3. I think you're one of those people that try and learn this, realize it is too hard, then try and take the easier path (and I can name more people than just you and I bet you guys know who you are) by using tools to show function names or compare against an Android game that has function names already visible. Then you get angry because this isn't coming to you as fast as you'd like it and spam help/support trying to get help on a topic and various things that you don't understand much at all. Do you really think this can be learned by making it as easy as possible for yourself? It took me more than a year and a half to get a good grip on IDA and it has paid off. I am discovering new ways to mod games that haven't been done before and finding my own methods to modding them.

"Oh look shmoo back at it again with his huge ego not believing me because he thinks he's better than me" no, I don't believe you because what you say doesn't make any sense at all.

 

Guest
This topic is now closed to further replies.
  • Our picks

    • CookieRun: Kingdom v7.1.201 Jailed Cheats +3
      Modded/Hacked App: CookieRun: Kingdom By Devsisters Corp.
      Bundle ID: com.devsisters.ck
      App Store Link: https://apps.apple.com/us/app/cookierun-kingdom/id1509450845?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

      - Multiply Attack
      - Multiply Defense
      - No Skills Cooldown
       

      ⬇️ iOS Hack Download IPA Link: https://iosgods.com/topic/201150-cookierun-kingdom-v610001-jailed-cheats-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 136 replies
    • HomeScapes v8.7.100 Jailed Cheats +3
      Modded/Hacked App: Homescapes By PLR Worldwide Sales Limited
      Bundle ID: com.playrix.gardenscapes-sweethome
      iTunes Store Link: https://apps.apple.com/us/app/homescapes/id1195621598?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

      - Infinite Moves
      - Infinite Boosters
      - Infinite Coins (Spend some)
      - Infinite Lives (Won't substract when you failed level)
      - Complete tasks without needing stars - Game Breaking for sure
      - Unlock Season Pass (by @NoFearGG) -- Go click the purchase button. It'll look like nothing happened. Leave season pass area. And go back. It'll show unlocked. And be saved that way


      🍏 Jailbreak iOS hacks: https://iosgods.com/topic/75434-homescapes-cheats-v776-5/

       

      ⬇️ iOS Hack Download IPA Link: https://iosgods.com/topic/71443-homescapes-v776-jailed-cheats-3/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 2,531 replies
    • Traveler's Journey v1.0.2 Jailed Cheats +3
      Modded/Hacked App: Traveler's Journey By Xiamen Yiniao Game Technology Co.,Ltd.
      Bundle ID: com.traveler.journey
      App Store Link: https://apps.apple.com/us/app/travelers-journey/id6758603940?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

      - God Mode
      - Multiply Attack
      - Free iAP

       

      ⬇️ iOS Hack Download IPA Link: https://iosgods.com/topic/207036-travelers-journey-v101-jailed-cheats-3/
        • Like
      • 2 replies
    • [ Last Cloudia TW ] 最後的克勞迪亞 v6.13.0 Jailed Cheats +4
      Modded/Hacked App: 最後的克勞迪亞 By Hong Kong Bao Chuan Software Technology Limited
      Bundle ID: com.boltrend.cloudia
      iTunes Store Link: https://apps.apple.com/tw/app/%E6%9C%80%E5%BE%8C%E7%9A%84%E5%85%8B%E5%8B%9E%E8%BF%AA%E4%BA%9E/id1530784975?uo=4



      Hack Features:
      - God Mode
      - Infinite MP
      - Infinite SP
      - Infinite Ether


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/139142-last-cloudia-tw-%E6%9C%80%E5%BE%8C%E7%9A%84%E5%85%8B%E5%8B%9E%E8%BF%AA%E4%BA%9E-v161-jailed-cheats-4/


      iOS Hack Download Link: https://iosgods.com/topic/139142-last-cloudia-tw-%E6%9C%80%E5%BE%8C%E7%9A%84%E5%85%8B%E5%8B%9E%E8%BF%AA%E4%BA%9E-v1141-jailed-cheats-4/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 376 replies
    • Township: Farm & City Building v34.1.0 Jailed Cheats +2
      Modded/Hacked App: Township by PLR Worldwide Sales Limited
      Bundle ID: com.playrix.township-ios
      iTunes Store Link: https://apps.apple.com/us/app/township/id638689075?uo=4&at=1010lce4


      Hack Features:
      - Freeze Currencies

      EDIT: Please be aware that this maybe cause your account banned, please use with caution and don’t abuse


      iOS Hack Download Link: https://iosgods.com/topic/116584-arm64-township-farm-city-building-v852-jailed-cheats-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,838 replies
    • LAST CLOUDIA v6.13.0 Jailed Cheats +4
      Modded/Hacked App: LAST CLOUDIA By AIDIS Inc.
      Bundle ID: com.aidis.lastcloudiaen
      iTunes Store Link: https://apps.apple.com/us/app/last-cloudia/id1473588527?uo=4


      Hack Features:
      - God Mode
      - Infinite MP
      - Infinite SP
      - Infinite Ether


      iOS Hack Download Link: https://iosgods.com/topic/147069-last-cloudia-v201-jailed-cheats-4/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 444 replies
    • Rent Please! Landlord Sim Cheats v1.7.2 +2
      Modded/Hacked App: Rent Please! Landlord Sim By Shimmer Games Co., Ltd.
      Bundle ID: com.shimmergames.tenants.gb.en
      iTunes Store Link: https://apps.apple.com/us/app/rent-please-landlord-sim/id1645842987?uo=4


      Hack Features:
      - Infinite Currencies
      - No Ads


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/168311-rent-please-landlord-sim-v111-jailed-cheats-2/


      iOS Hack Download Link: https://iosgods.com/topic/168312-rent-please-landlord-sim-cheats-v111-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 167 replies
    • Gangstar Vegas Cheats v9.4.0 +4
      Modded/Hacked App: Gangstar Vegas - Mafia action By Gameloft
      Bundle ID: com.gameloft.gangstar4
      iTunes Store Link: https://apps.apple.com/us/app/gangstar-vegas-mafia-action/id571393580?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

      - 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


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/topic/166702-gangstar-vegas-mafia-action-v791-jailed-cheats-3/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/147734-gangstar-vegas-cheats-v800-4/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,041 replies
    • The Battle Cats v15.2.0 Jailed Cheats +2
      Modded/Hacked App: The Battle Cats by ponos corporation
      Bundle ID: jp.co.ponos.battlecatsen
      iTunes Store Link: https://apps.apple.com/us/app/the-battle-cats/id850057092?uo=4&at=1010lce4


      Hack Features:
      - Infinite Cash
      - OHK Linked


      Jailbreak required hack(s): https://iosgods.com/topic/124448-arm64-the-battle-cats-cheats-all-versions-2/


      iOS Hack Download Link: https://iosgods.com/topic/124447-arm64-the-battle-cats-v1070-jailed-cheats-2/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 866 replies
    • Merge Crime: Mystery & Romance v1.14.0 [ +3 Cheats ] Currency Max
      Modded/Hacked App: Merge Crime: Mystery & Romance By StandEgg Co., Ltd
      Bundle ID: com.standegg.mergecrime
      App Store Link: https://apps.apple.com/us/app/merge-crime-mystery-romance/id6746175307?uo=4

       

       

      📌 Mod Requirements

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

       

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      - Unlimited Energy

       

      ⬇️ 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

      - IK_IK

       

      📷 Cheat Video/Screenshots

      N/A

       

      More iOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.

      Modded Android APKs
      Need modded apps or games for Android? Check out the latest custom APK mods, cheats & more in our Android Section.
      • 11 replies
    • Merge Crime: Mystery & Romance v1.14.0 [ +3 Jailed ] Currency Max
      Modded/Hacked App: Merge Crime: Mystery & Romance By StandEgg Co., Ltd
      Bundle ID: com.standegg.mergecrime
      App Store Link: https://apps.apple.com/us/app/merge-crime-mystery-romance/id6746175307?uo=4

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      - Unlimited Energy
        • Thanks
        • Like
      • 11 replies
    • Mob Control +7 Mods [ Unlimited Currencies ]
      Mod APK Game Name: Mob Control
      Rooted Device: Not Required.
      Google Play Store Link: https://play.google.com/store/apps/details?id=com.vincentb.MobControl

       

      🤩 Hack Features

      - Unlimited Coins -> Will increase instead of decrease.
      - Unlimited Skip'Its -> Will increase instead of decrease.
      - Unlimited Stars -> Earn some.
      - Unlimited Bricks
      - Unlimited Earnt Bricks
      - Unlimited Cards -> Will increase instead of decrease.
      - No Card Requirement
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 19 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