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

    • Caveman Life v1.0.2 Cheat Menu [+5 Cheats]
      Modded/Hacked App: Caveman Life By 24 HIT Riga SIA
      Bundle ID: com.prehistoric.dude
      iTunes Store Link: https://apps.apple.com/us/app/caveman-life/id6739502478?uo=4


       

      🤩 Hack Features

      - Cheat Menu (Enable and hold setting button until cheat menu appear. Password is : 2424)
       
      • 4 replies
    • Caveman Life v1.0.2 Cheat Menu [+5 Jailed Cheats]
      Modded/Hacked App: Caveman Life By 24 HIT Riga SIA
      Bundle ID: com.prehistoric.dude
      iTunes Store Link: https://apps.apple.com/us/app/caveman-life/id6739502478?uo=4



      🤩 Hack Features

      - Cheat Menu (Enable and hold setting button until cheat menu appear. Password is : 2424)

       
      • 2 replies
    • Pal Go: Tower Defense TD v0.3.90 [+7 Cheats]
      Modded/Hacked App: Pal Go: Tower Defense TD By Playwind Ltd
      Bundle ID: com.playwindgames.freedefender
      iTunes Store Link: https://apps.apple.com/us/app/pal-go-tower-defense-td/id6479316663?uo=4


       

      🚀 Hack Features

      - [VIP] Freeze Currency (Currency will not decrease when used)

      - [VIP] Currency Always Enough (Buy even when you don't have enough currency)

      - [Free] Higher Recruit Energy (Gives 500 Recruit Energy Every Wave)

      - [Free] Always Can Drag Hero

      - [Free] Skip Ads

      - [Free] No Attack Cooldown

      - [Free] Global Speed Multiplier (Enable Inside Battle)

       

      Warning


      Do not use on main account. There is a chance of ban. Not responsible for any bans.

       


      🍏 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/
      • 56 replies
    • Pal Go: Tower Defense TD v0.3.90 [+7 Jailed Cheats]
      Modded/Hacked App: Pal Go: Tower Defense TD By Playwind Ltd
      Bundle ID: com.playwindgames.freedefender
      iTunes Store Link: https://apps.apple.com/us/app/pal-go-tower-defense-td/id6479316663?uo=4


       

      Hack Features

      - [VIP] Freeze Currency (Currency will not decrease when used)

      - [VIP] Currency Always Enough (Buy even when you don't have enough currency)

      - [Free] Higher Recruit Energy (Gives 500 Recruit Energy Every Wave)

      - [Free] Always Can Drag Hero

      - [Free] Skip Ads

      - [Free] No Attack Cooldown

      - [Free] Global Speed Multiplier (Enable Inside Battle)

       

      Warning


      Do not use on main account. There is a chance of ban. Not responsible for any bans.

       

      Jailbreak required iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APKs: https://iosgods.com/forum/68-android-section/
      • 81 replies
    • Scolopendra v1.0.1 Debug Menu [+4 Jailed Cheats]
      Modded/Hacked App: Scolopendra By 24 HIT Riga SIA
      Bundle ID: com.game.scolopendra
      iTunes Store Link: https://apps.apple.com/us/app/scolopendra/id6742407695?uo=4



      🤩 Hack Features

      - Debug Menu (Enable and Debug Menu Will Appear)

      • 2 replies
    • Puzzles & Cats v1.3.0 [+5 Jailed Cheats]
      Modded/Hacked App: Puzzles & Cats By Kwalee Ltd
      Bundle ID: com.kwalee.puzzlesandcatsnew
      iTunes Store Link: https://apps.apple.com/us/app/puzzles-cats/id6738574871?uo=4

       

      🤩 Hack Features

      - Free Store (Everything inside Shop. Enable and Buy)
      - Auto Win (Enable and make move)
      - Never Die
      - Infinite Heart
      - Always Can Afford (Gold, Diamond, Character Upgrade)
      • 5 replies
    • Puzzles & Cats v1.3.0 [+5 Cheats]
      Modded/Hacked App: Puzzles & Cats By Kwalee Ltd
      Bundle ID: com.kwalee.puzzlesandcatsnew
      iTunes Store Link: https://apps.apple.com/us/app/puzzles-cats/id6738574871?uo=4



      🤩 Hack Features

      - Free Store (Everything inside Shop. Enable and Buy)
      - Auto Win (Enable and make move)
      - Never Die
      - Infinite Heart
      - Always Can Afford (Gold, Diamond, Character Upgrade)

      • 2 replies
    • Little Defenders v1.2.11 [+2 Jailed Cheats]
      Modded/Hacked App: Little Defenders By 羡龄 甄
      Bundle ID: com.sisheshidu.guardian
      App Store Link: https://apps.apple.com/us/app/little-defenders/id6740069144?uo=4



      🤩 Hack Features

      - Never Die
      - Add Coin (Inside Battle)
      • 3 replies
    • Little Defenders v1.2.11 [+2 Cheats]
      Modded/Hacked App: Little Defenders By 羡龄 甄
      Bundle ID: com.sisheshidu.guardian
      App Store Link: https://apps.apple.com/us/app/little-defenders/id6740069144?uo=4



      🤩 Hack Features

      - Never Die
      - Add Coin (Inside Battle)

      • 6 replies
    • Scolopendra v1.0.1 Debug Menu [+4 Cheats]
      Modded/Hacked App: Scolopendra By 24 HIT Riga SIA
      Bundle ID: com.game.scolopendra
      iTunes Store Link: https://apps.apple.com/us/app/scolopendra/id6742407695?uo=4



      🤩 Hack Features

      - Debug Menu (Enable and Debug Menu Will Appear)

      • 3 replies
    • Episode: Reality Stars v1.23 +2++ Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Episode: Reality Stars By Episode Interactive, LLC
      Bundle ID: com.sodeepilabs.glamsquad
      App Store Link: https://apps.apple.com/ph/app/episode-reality-stars/id1604253094?uo=4


      Hack Features:
      - Unlimited Currencies -> Head into Settings and toggle the License button. Press on Hero to add 99K currencies.
      - Time Cheat Menu -> Head into Settings and toggle the Terms of Service button. Toggle to your liking.
      • 91 replies
    • Tiny Warriors Clash v1.9.16 [+5 Jailed Cheats]
      Modded/Hacked App: Tiny Warriors Clash By NLABSOFT Co., Ltd.
      Bundle ID: com.nlabsoft.defense.tinywarriors
      App Store Link: https://apps.apple.com/us/app/tiny-warriors-clash/id6499256180?uo=4



      🤩 Hack Features

      - Never Die
      - Add Meat (Enable inside battle)
      - Add Currency (Enable and spend)
      - Add Gems (Enable and spend)
      - Add Trait Points (Enable and spend)
      • 10 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