Jump to content

Star Wars™: Galaxy of Heroes Cheats v0.34.0 +8 [ Multiply Attack & More ]


Rook

3,029 posts in this topic

Recommended Posts

1 hour ago, Socius said:

Hey @Laxus would you be able to fix the hack like Danyal did last time? Right now the damage/defense sliders only work on the health bars and not protection bars. Danyal gave me a version to test with proper damage increase and reduction to protection as well as health, so i know it’s possible. I’m not sure how hard it might be to do though. Thanks. 
 

 

  Hide contents

 

just so I’m clear on what I’m saying, this is how the game engine works right now:

Attack = original attack damage

Prot = Protection

HP = Health

normally the engine does this when you attack:


If Attack < Prot then Prot = Prot - Attack

ElseIf Attack > Prot then Prot = Prot - Prot and HP = HP - (Attack - Prot)

The problem is right now, the hack isn’t increasing Attack. it’s modifying the HP = HP - (Attack - Prot) section, by multiplying the (Attack - Prot) part.  So the hack rewrites it as HP = HP - ((Attack - Prot) * x) where x is the slider multiplier (1-20)  

So this is why it’s a problem. let’s try an example where Attack = 25000, Prot = 50000, HP = 30000, and the damage slider is on 20x  

If Attack (25000) < Prot (50000) then Prot = 50000 - 25000  

Nothing happens and nothing changes. Because the hack isn’t increasing damage dealt  it’s increasing damage taken by HP. But if the attack damage variable isn’t being increased, there is no damage being done to the health bar at all.

The end result of that is the character is left with 25000 prot and 30000 HP. Let’s do another example.   Danyal’s fix applied the 1-20x damage slider to the protection bar as well.  So his hack works like this: 

If Attack < Prot then Prot = Prot - (Attack * x)

ElseIf Attack > Prot then Prot = Prot - Prot and HP = HP - ((Attack - Prot) * x)

so this has one benefit. using the example from before, where Attack = 25000, Prot = 50000, HP = 30000, and the damage slider is on 20x, this is what happens:

If Attack (25000) < Prot (50000) then Prot = 50000 - (25000  * 20)

the character ends up with 0 protection here because there was 500,000 damage done. But the damage was only done to the protection bar.  Because the hack only increases damage taken by protection and health.  Not damage dealt by an attack.

If we do the same example as above, but have an attack that does 51,000 damage instead, this is what happens:

IfElse Attack (51000) > Prot (50000) then Prot = Prot - (Prot * x) and HP = HP - ((Attack{51000} - Prot{50000}) * x(20)

this means with a character that had 50k Prot and 30k health, and an attack that does 51k damage, and with 20x damage slider enabled, the character loses all their Prot, but since Prot - Attack is only 1000 damage, only 1000 damage is multiplied by 20. Meaning the character takes 20k damage to health. So a 51,000 damage attack, on a character with 50k protection and 30k health, does a total of 70k damage   With 20x damage multiplier. And if the attack was 49,999 instead of 51,000, then the total damage it would do with 20x damage multiplier would only be 49,999. Because the hack currently just increases the damage the protection and health bars take, and not how much damage the original attack does. And before that damage is dealt, the game engine itself decides what portion of the normal damage hits protection, and if any damage at all hits the health bar. 

I tried to explain this as well as I could. Let me know if you understand my point. Thank you!

 

If I understand correctly it need to reduce the shield value aswell right? New deb should be what you need if so :wonder: 

Link to comment
Share on other sites

5 hours ago, Laxus said:

If I understand correctly it need to reduce the shield value aswell right? New deb should be what you need if so :wonder: 

Hey @Laxus yes it does need to affect protection damage as well. The example I gave affects both defense (damage you take) and offense (damage you give). So with 20x defense slider, an attack against you that should do 20,000 damage still does 20,000 damage to your protection bar. But only 1,000 to your health bar.  Because currently it’s only working on reducing or increasing damage to health bars.  Thanks!
 

  • Thanks 1
Link to comment
Share on other sites

5 hours ago, Socius said:

Hey @Laxus yes it does need to affect protection damage as well. The example I gave affects both defense (damage you take) and offense (damage you give). So with 20x defense slider, an attack against you that should do 20,000 damage still does 20,000 damage to your protection bar. But only 1,000 to your health bar.  Because currently it’s only working on reducing or increasing damage to health bars.  Thanks!
 

Have you tried the new deb?

  • Winner 1
Link to comment
Share on other sites

1 hour ago, Laxus said:

Have you tried the new deb?

Hey. Thanks! I didn’t realize you meant for me to try downloading the new deb file. I thought you meant I’m going to need to wait for a new deb file with the fixes. Haha. I just tried it and it’s working beautifully! Thank you!

Link to comment
Share on other sites

On 8/14/2020 at 7:09 PM, Laxus said:

Have you tried the new deb?

Hey @Laxus

I noticed a feature of the mod that can give away the fact that a hack was used. A while ago, SWGoH started recording battle duration, characters used, as well as their health and protection percentages at the end of battle. This is recorded for galactic championship fights and is viewable by all. It was specifically designed to help catch hackers.  And I just noticed that when using the One Hit Kill feature, it does a lot of damage to health and kills the enemy. BUT...it doesn’t do damage to protection. So the characters will die, but it will be recorded that they died with 0 health and full protection. Is there a way to make One Hit Kill also damage the protection bar?  It’s also possible that SWGoH records this data for all other battles to investigate hacking reports. So it would be greatly appreciated. Thank you. 

Link to comment
Share on other sites

5 minutes ago, Socius said:

Hey @Laxus

I noticed a feature of the mod that can give away the fact that a hack was used. A while ago, SWGoH started recording battle duration, characters used, as well as their health and protection percentages at the end of battle. This is recorded for galactic championship fights and is viewable by all. It was specifically designed to help catch hackers.  And I just noticed that when using the One Hit Kill feature, it does a lot of damage to health and kills the enemy. BUT...it doesn’t do damage to protection. So the characters will die, but it will be recorded that they died with 0 health and full protection. Is there a way to make One Hit Kill also damage the protection bar?  It’s also possible that SWGoH records this data for all other battles to investigate hacking reports. So it would be greatly appreciated. Thank you. 

Isn’t the new deb I already added damage to the shield? Perhap you want to seperate it to another switch (option). For example x Damage to shield switch and x damage to Heath switch?

Current version it’s all in one switch :wonder:

Updated by Laxus
Link to comment
Share on other sites

9 hours ago, Laxus said:

Isn’t the new deb I already added damage to the shield? Perhap you want to seperate it to another switch (option). For example x Damage to shield switch and x damage to Heath switch?

Current version it’s all in one switch :wonder:

Your damage sliders are working perfectly!  I’m taking about the One Hit Kill toggle. Right now it kills the enemy when they’re hit by doing like 999,999,999 damage to their health bar to instant kill them. Normally we wouldn’t notice anything because it’s properly killing the enemy in 1 hit. But the problem I noticed is with the cheat detection system they created, it now records how much health and protection someone has at the end of a galactic championship battle.  So for example, you use one hit kill on someone with 20k protection and 40k health. That person died as they should. But with the new SWGoH system, it’ll record that they died, but that they died with 0 health, but still 100% protection! Because one hit kill just kills them by killing their health bar. Does that explain it a bit better?  Obviously I’m not using One hit kill atm, but I would hate for someone to get banned for a simple thing like this. 

Link to comment
Share on other sites

26 minutes ago, Socius said:

Your damage sliders are working perfectly!  I’m taking about the One Hit Kill toggle. Right now it kills the enemy when they’re hit by doing like 999,999,999 damage to their health bar to instant kill them. Normally we wouldn’t notice anything because it’s properly killing the enemy in 1 hit. But the problem I noticed is with the cheat detection system they created, it now records how much health and protection someone has at the end of a galactic championship battle.  So for example, you use one hit kill on someone with 20k protection and 40k health. That person died as they should. But with the new SWGoH system, it’ll record that they died, but that they died with 0 health, but still 100% protection! Because one hit kill just kills them by killing their health bar. Does that explain it a bit better?  Obviously I’m not using One hit kill atm, but I would hate for someone to get banned for a simple thing like this. 

Probably you used the ohk feature, it not made by me. Try using the multiply damage and defense only if you want safe

EDIT: I misread, seem like you not using the ohk feature. IF you not using then there is no way the damage that high

Updated by Laxus
Link to comment
Share on other sites

  • Our picks

    • MADFUT Generations v1.0 +3 Jailed Cheats [ Unlimited Coins ]
      Modded/Hacked App: MAD FUT GENERATIONS By MEDFUT, OOO
      Bundle ID: com.madfut.generations
      iTunes Store Link: https://apps.apple.com/us/app/mad-fut-generations/id6478009261?uo=4


      Hack Features:
      - Unlimited Coins -> Earn or spend some.
      - Unlimited Store Packs -> Buy one.
      - Unlimited Free Reward Points


      Jailbreak required hack(s): [Mod Menu Hack] MADFUT Generations v1.0 +3 Cheats [ Unlimited Coins ] - ViP 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/
        • Informative
        • Agree
        • Like
      • 4 replies
    • MADFUT Generations v1.0 +3 Cheats [ Unlimited Coins ]
      Modded/Hacked App: MAD FUT GENERATIONS By MEDFUT, OOO
      Bundle ID: com.madfut.generations
      iTunes Store Link: https://apps.apple.com/us/app/mad-fut-generations/id6478009261?uo=4


      Hack Features:
      - Unlimited Coins -> Earn or spend some.
      - Unlimited Store Packs -> Buy one.
      - Unlimited Free Reward Points


      Non-Jailbroken & No Jailbreak required hack(s): [No Jailbreak Required] MADFUT Generations v1.0 +3 Jailed Cheats [ Unlimited Coins ] - ViP Non-Jailbroken Hacks & 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/
        • Winner
        • Like
      • 6 replies
    • Golf Guys v1.21 Cheats +2
      Modded/Hacked App: Golf Guys By Voodoo
      Bundle ID: com.partyup.golfroyale
      iTunes Store Link: https://apps.apple.com/us/app/golf-guys/id1640583531?uo=4

       

      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Debug Menu: Setting -> Discord -> Crash -> Reopen -> Float icon -> Partyup Debug Enviro -> Turn On -> Close The Float Icon -> Move The Float Icon Away -> Click Left Corner
      - Premium: Setting -> Discord -> Crash -> Reopen -> Float icon -> In-App Purchase -> VoodooPremium
      • 1 reply
    • Golf Guys v1.21 Cheats +2
      Modded/Hacked App: Golf Guys By Voodoo
      Bundle ID: com.partyup.golfroyale
      iTunes Store Link: https://apps.apple.com/us/app/golf-guys/id1640583531?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:
      - Debug Menu: Setting -> Discord -> Crash -> Reopen -> Float icon -> Partyup Debug Enviro -> Turn On -> Close The Float Icon -> Move The Float Icon Away -> Click Left Corner
      - Premium: Setting -> Discord -> Crash -> Reopen -> Float icon -> In-App Purchase -> VoodooPremium
        • Like
      • 3 replies
    • F Class Adventurer: AFK RPG v1.53.04 +3 Cheats
      Modded/Hacked App: F Class Adventurer By EK GAMES
      Bundle ID: net.ekgames.fclasshero
      iTunes Store Link: https://apps.apple.com/us/app/f-class-adventurer/id6444598021?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


      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
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 337 replies
    • Pixel Hunter Idle v7.0 +3 Cheats
      Modded/Hacked App: 픽셀 헌터 키우기: 방치형 RPG By ZillionGames lnc
      Bundle ID: com.zilliongames.hunteridle
      iTunes Store Link: https://apps.apple.com/kr/app/%ED%94%BD%EC%85%80-%ED%97%8C%ED%84%B0-%ED%82%A4%EC%9A%B0%EA%B8%B0-%EB%B0%A9%EC%B9%98%ED%98%95-rpg/id1664366717?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


      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
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 335 replies
    • Air Defence 3D v1.20.1 Cheats +4
      Modded/Hacked App: Air Defence 3D By Voodoo
      Bundle ID: dats.games.airdefence3d
      iTunes Store Link: https://apps.apple.com/us/app/air-defence-3d/id6443950122?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Debug Menu: Setting -> Privacy -> Crash -> Reopen -> Float icon -> Game Cheats
      - Premium: Setting -> Privacy -> Crash -> Reopen -> Float icon -> In-App Purchase -> VoodooPremium
      - Dumb Enemy
      - Earn more gold
      • 1 reply
    • Air Defence 3D v1.20.1 Cheats +4
      Modded/Hacked App: Air Defence 3D By Voodoo
      Bundle ID: dats.games.airdefence3d
      iTunes Store Link: https://apps.apple.com/us/app/air-defence-3d/id6443950122?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:
      - Debug Menu: Setting -> Privacy -> Crash -> Reopen -> Float icon -> Game Cheats
      - Premium: Setting -> Privacy -> Crash -> Reopen -> Float icon -> In-App Purchase -> VoodooPremium
      - Dumb Enemy
      - Earn more gold
      • 3 replies
    • War Plane Strike: Sky Combat v2.8 Cheats +2
      Modded/Hacked App: War Plane Strike: Sky Combat By Voodoo
      Bundle ID: com.thagiwara.aircraftmaster
      iTunes Store Link: https://apps.apple.com/us/app/war-plane-strike-sky-combat/id6443915404?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Debug Menu: Setting -> Privacy -> Float icon -> Game Process
      - Premium: Setting -> Privacy -> Float icon -> In-App Purchase -> VoodooPremium
        • Like
      • 0 replies
    • War Plane Strike: Sky Combat v2.8 Cheats +2
      Modded/Hacked App: War Plane Strike: Sky Combat By Voodoo
      Bundle ID: com.thagiwara.aircraftmaster
      iTunes Store Link: https://apps.apple.com/us/app/war-plane-strike-sky-combat/id6443915404?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:
      - Debug Menu: Setting -> Privacy -> Float icon -> Game Process
      - Premium: Setting -> Privacy -> Float icon -> In-App Purchase -> VoodooPremium
        • Like
      • 1 reply
    • Infantry Attack: Battle 3D FPS v1.28.4 Cheats +2
      Modded/Hacked App: Infantry Attack: Battle 3D FPS By Voodoo
      Bundle ID: com.niklas.fpsdefense
      iTunes Store Link: https://apps.apple.com/us/app/infantry-attack-battle-3d-fps/id6444265745?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Debug Menu: Setting -> Discord -> Float icon -> Game Debug
      - Premium: Setting -> Discord -> Float icon -> In-App Purchase -> VoodooPremium
      • 0 replies
    • Infantry Attack: Battle 3D FPS v1.28.4 Cheats +2
      Modded/Hacked App: Infantry Attack: Battle 3D FPS By Voodoo
      Bundle ID: com.niklas.fpsdefense
      iTunes Store Link: https://apps.apple.com/us/app/infantry-attack-battle-3d-fps/id6444265745?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:
      - Debug Menu: Setting -> Discord -> Float icon -> Game Debug
      - Premium: Setting -> Discord -> Float icon -> In-App Purchase -> VoodooPremium
        • Thanks
        • Like
      • 1 reply
×
  • 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