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

    • Egg, Inc. Cheats v1.35.1 +1 [ Free Store ]
      Modded/Hacked App: Egg, Inc. By Auxbrain, Inc.
      Bundle ID: com.auxbrain.egginc
      iTunes Store Link: https://apps.apple.com/us/app/egg-inc/id993492744?uo=4


      Hack Features:
      - Infinite Currencies (Spend to Gain)


      iOS Hack Download Link: https://iosgods.com/topic/141151-egg-inc-cheats-all-versions-1-infinite-currencies/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 478 replies
    • Galaxy Attack: Alien Shooter v5.14.9 [ +30++ Cheats ] Currency Max
      Modded/Hacked App: Galaxy Attack: Alien Shooter By DINO GAME LIMITED
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?uo=4
       

      🚀 Hack Features

      - ADS NO [ Rewards Free ]

      - Gems [ Linked With Battle Pass ]

      - Gold [ Linked With Battle Pass ]

      - Chest [ Linked With Battle Pass ]

      - Monthly Card Normal

      - Monthly Card Super

      - Monthly Card Premium

      - Energy NO Need [ When 0 Play Unlimited ]

      - Evolve Stone

      - Unlimited Ship [ Select Any Ship Before The Battle ]

      - Drone Ticket

      - Terminator Point

      - Tech Point

      - Overload Ball

      - Matrix Max

      - Golden Revive Max

      - Revive Unlimited

      - Campain Revive Cost Gold [ Earn With Gold ]

      - Gems Revive  [Earn With Gems ]

      - Endless Revive Cost Gold [Earn With Gold ]

      - Talent Upgrade Cost  [Earn With Gold ]

      - Battle Pass Premium Active

      - BP Free [ Claim Unlimited ]

      - BP Premium [ Claim Unlimited ]

      - BP Free Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - BP Premium Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - Bullet Max

      - Life Max

      - Damage

      Warning 


      Don"t Abuse The Hack In Case Banned Any Data Lose I'M Not Responsible  

       

      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      🤖 Modded Android APK(s): https://iosgods.com/forum/68-android-section/
        • Informative
        • Agree
        • Haha
        • Winner
        • Like
      • 94 replies
    • Galaxy Attack: Alien Shooter v5.14.9 [ +30++ Jailed ] Currency Max
      Modded/Hacked App: Galaxy Attack: Alien Shooter By DINO GAME LIMITED
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?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

      - ADS NO [ Rewards Free ]

      - Gems [ Linked With Battle Pass ]

      - Gold [ Linked With Battle Pass ]

      - Chest [ Linked With Battle Pass ]

      - Monthly Card Normal

      - Monthly Card Super

      - Monthly Card Premium

      - Energy NO Need [ When 0 Play Unlimited ]

      - Evolve Stone

      - Unlimited Ship [ Select Any Ship Before The Battle ]

      - Drone Ticket

      - Terminator Point

      - Tech Point

      - Overload Ball

      - Matrix Max

      - Golden Revive Max

      - Revive Unlimited

      - Campain Revive Cost Gold [ Earn With Gold ]

      - Gems Revive  [Earn With Gems ]

      - Endless Revive Cost Gold [Earn With Gold ]

      - Talent Upgrade Cost  [Earn With Gold ]

      - Battle Pass Premium Active

      - BP Free [ Claim Unlimited ]

      - BP Premium [ Claim Unlimited ]

      - BP Free Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - BP Premium Rewards Unlimited [ Gold Gems Chest Stone + More ]

      - Bullet Max

      - Life Max

      - Damage

      Warning 


      Don"t Abuse The Hack In Case Banned Any Data Lose I'M Not Responsible 


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/

       

      📥 iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 77 replies
    • Galaxy Attack Alien Shooter v5.14.9 [ +3 Jailed ] Never Die
      Modded/Hacked App: Galaxy Attack: Alien Shooter By DINO GAME LIMITED
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?uo=4


      Hack Features:
      - Max Bullet
      - Max Life
      - DMG



      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 74 replies
    • Galaxy Attack Alien Shooter v5.14.9 [ +3 Cheats ] Never Die
      Modded/Hacked App: Galaxy Attack: Alien Shooter By ABIGAMES PTE. LTD
      Bundle ID: com.alien.shooter.galaxy.attack
      iTunes Store Link: https://apps.apple.com/us/app/galaxy-attack-alien-shooter/id1176011642?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:
      - Max Life 
      - Damage Multi [PvP Use Only Boss ] 
      - Max Bullet



      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
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 225 replies
    • Egg, Inc. v1.35.1 Jailed Cheats +1 [ Free Store ]
      Modded/Hacked App: Egg, Inc. by Auxbrain, Inc.
      Bundle ID: com.auxbrain.egginc
      iTunes Store Link: https://itunes.apple.com/us/app/egg-inc/id993492744?mt=8&uo=4&at=1010lce4



      Hack Features:
      - Free iAP


      Hack Download Link: https://iosgods.com/topic/86300-arm64-egg-inc-v18-jailed-cheats-1/

      #Hack #Jailbreak #Cydia #Cheat #Apple #Android #iOSGods
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 947 replies
    • Soccer Journey 2026 v1.0.6 [ +12 Cheats ] Currency Max
      Modded/Hacked App: Soccer Journey 2026 By KONG SOFTWARE JOINT STOCK COMPANY
      Bundle ID: com.kongsoftware.project02sj.gl
      App Store Link: https://apps.apple.com/us/app/soccer-journey-2026/id6745119606?uo=4


      🤩 Hack Features

      - Gold

      - Cash

      - Player Energy

      - Match Energy

      - Tokens

      - EXP User

      - Scout Ticket +3

      - Standard Scout +4

      - Cube +4

      - Training +3

      - Upgrade Cost All Building [ Earn Cash ]

      - Speed UP Cost All Building [ Earn Cash ]
        • Agree
        • Thanks
        • Winner
        • Like
      • 43 replies
    • Offroad Outlaws v7.0.25 Jailed Cheats +1
      Modded/Hacked App: Offroad Outlaws by Zach Smith
      Bundle ID: com.battlecreek.offroadoutlaws
      iTunes Store Link: https://apps.apple.com/us/app/offroad-outlaws/id1286538410?uo=4&at=1010lce4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Cydia Impactor.
      - A Computer Running Windows/Mac/Linux.


      Hack Features:
      - Free iAP (Turn on inside iOSGods Mod Menu first)
       


      iOS Hack Download Link: https://iosgods.com/topic/130663-offroad-outlaws-v7025-jailed-cheats-1/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 223 replies
    • Walkalypse - IRL Survival RPG v1.1.10 [ +4 Cheats ] Currency Max
      Modded/Hacked App: Walkalypse - IRL Survival RPG By CGDEALERS LTD EOOD
      Bundle ID: com.cgdealers.walkalypse
      App Store Link: https://apps.apple.com/ph/app/walkalypse-irl-survival-rpg/id6748278171?uo=4

      🤩 Hack Features

      - Unlimited Gold / Earn Some Disable After Hack
      - Daily Steps / Auto Max When Use
      - Offline Steps Freeze
      - Resources Max 100 / Earn Some
        • Winner
        • Like
      • 14 replies
    • Walkalypse - IRL Survival RPG v1.1.10 [ +4 Jailed ] Currency Max
      Modded/Hacked App: Walkalypse - IRL Survival RPG By CGDEALERS LTD EOOD
      Bundle ID: com.cgdealers.walkalypse
      App Store Link: https://apps.apple.com/ph/app/walkalypse-irl-survival-rpg/id6748278171?uo=4

      🤩 Hack Features

      - Unlimited Gold / Earn Some Disable After Hack
      - Daily Steps / Auto Max When Use
      - Offline Steps Freeze
      - Resources Max 100 / Earn Some
        • Informative
        • Winner
        • Like
      • 6 replies
    • Paradise Paws: Merge Animals v1.0.15 [ +9 Cheats ] Currency Max
      Modded/Hacked App: Animal Sanctuary By Wildlife Studios, Inc
      Bundle ID: com.wildlifestudios.merge.animal.sanctuary
      App Store Link: https://apps.apple.com/us/app/animal-sanctuary/id6741805691?uo=4
       

      🤩 Hack Features

      - Gems

      - Coins

      - Heart

      - Spin

      - LvL

      - Exp

      - Fog Auto Remove [ Linked With LvL ]

      - Premum Lands Unlocked [ Just Tap ]

      - Store Free [ IAP Not ]

      Note:- Game Close After Currency Hack Don't Worry
        • Haha
        • Thanks
        • Like
      • 31 replies
    • Paradise Paws: Merge Animals v1.0.15 [ +9 Jailed ] Currency Max
      Modded/Hacked App: Animal Sanctuary By Wildlife Studios, Inc
      Bundle ID: com.wildlifestudios.merge.animal.sanctuary
      App Store Link: https://apps.apple.com/us/app/animal-sanctuary/id6741805691?uo=4


      🤩 Hack Features

      - Gems

      - Coins

      - Heart

      - Spin

      - LvL

      - Exp

      - Fog Auto Remove [ Linked With LvL ]

      - Premum Lands Unlocked [ Just Tap ]

      - Store Free [ IAP Not ]

      Note:- Game Close After Currency Hack Don't Worry
        • Agree
        • Thanks
        • Like
      • 32 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