Jump to content

3,125 posts in this topic

Recommended Posts

Posted
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: 

Posted
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
Posted
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
Posted
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!

Posted
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. 

Posted (edited)
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
Posted
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. 

Posted (edited)
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
  • Our picks

    • Pocket Champs PVP Racing Games Cheats v5.8.0 +2
      Modded/Hacked App: Pocket Champs: 3D Racing Games By MADBOX
      Bundle ID: com.pocketchamps.game
      iTunes Store Link: https://apps.apple.com/us/app/pocket-champs-3d-racing-games/id1542776143?uo=4


      Hack Features:
      - Free Store (not Free iAP) -- Negative value will reset to 0 on launch
      - Infinite Coins & Gems

      iOS Hack Download Link: https://iosgods.com/topic/165006-pocket-champs-3d-racing-games-cheats-v318-2/
      • 187 replies
    • Prison Empire Tycoon-Idle Game Cheats v3.8 +2
      Modded/Hacked App: Prison Empire Tycoon-Idle Game by Digital Things Sociedad Limitada
      Bundle ID: com.codigames.idle.prison.empire.manager.tycoon
      iTunes Store Link: https://apps.apple.com/us/app/prison-empire-tycoon-idle-game/id1508490923?uo=4&at=1010lce4


      Hack Features:
      - Infinite Cash
      - No Ads


      Non-Jailbroken & No Jailbreak required hack(s):  https://iosgods.com/topic/128324-arm64-prison-empire-tycoon%EF%BC%8Didle-game-v102-jailed-cheats-2/

       
      iOS Hack Download Link: https://iosgods.com/topic/128322-arm64-prison-empire-tycoon%EF%BC%8Didle-game-cheats-all-versions-2/
      • 1,158 replies
    • Nonstop Knight 2 Cheats v3.2.8 +7 [ God Mode & More ]
      Modded/Hacked App: Nonstop Knight 2 - Action RPG By Flaregames GmbH
      Bundle ID: com.koplagames.kopla02
      iTunes Store Link: https://apps.apple.com/us/app/nonstop-knight-2-action-rpg/id1444887980?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

      - God Mode
      - One Hit Kill
      - Custom Move Speed
      - Custom Attack Speed
      - Custom Attack Range
      - Instant Skill
      - Infinite MP

       

      Non-Jailbroken Hack: https://iosgods.com/topic/99785-nonstop-knight-2-v323-jailed-cheats-2/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/99783-nonstop-knight-2-cheats-v324-7-god-mode-more/
      • 1,604 replies
    • Zooba: Zoo Battle Royale Game v5.13.1 Jailed Cheats +2
      Modded/Hacked App: Zooba: Zoo Battle Royale Games By Wildlife Studios Limited
      Bundle ID: com.fungames.battleroyale
      iTunes Store Link: https://apps.apple.com/us/app/zooba-zoo-battle-royale-games/id1459402952?uo=4


      Hack Features:
      - Map Hacks
      - Allow Shoot in Water


      Jailbreak required hack(s): https://iosgods.com/topic/131104-arm64-zooba-zoo-battle-royale-game-cheats-all-versions-2/


      iOS Hack Download Link: https://iosgods.com/topic/131134-arm64-zooba-zoo-battle-royale-game-v320-jailed-cheats-2/
      • 1,284 replies
    • Warhammer 40,000: Tacticus v1.29.13 +4 Cheats
      Modded/Hacked App: Warhammer 40,000: Tacticus By Snowprint Studios AB
      Bundle ID: com.snowprintstudios.tacticus
      iTunes Store Link: https://apps.apple.com/us/app/warhammer-40-000-tacticus/id1599937506?uo=4

      Hack Features:
      - Always Win [ even if all your characters die, you win ]
      - Custom Ability Stats
      - Ability Always Available
      - Game Speed Multiplier

      Note: Use characters that do ability attack to multiple enemies like Varro Tigurius & Bellator


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/163492-warhammer-40000-tacticus-v1133-3-cheats-for-jailed-idevices/


      iOS Hack Download Link: https://iosgods.com/topic/163377-warhammer-40000-tacticus-v1133-4-cheats/
      • 293 replies
    • Subway Surfers Cheats v3.47.0 +5
      Modded/Hacked App: Subway Surfers By Sybo Games ApS
      Bundle ID: com.kiloo.subwaysurfers
      iTunes Store Link: https://apps.apple.com/us/app/subway-surfers/id512939461?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

      - Free Store (not Free iAP)
      - Free iAP (ViP Only)
      - Unlock Characters Outfit
      - Custom Jump Height
      - No Clip (To end level swipe to left til you get dizzy, swipe again and you will lose)

       

      Non-Jailbroken Hack: https://iosgods.com/topic/119795-subway-surfers-v3425-jailed-cheats-5/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/119793-subway-surfers-cheats-v3430-5/
      • 2,324 replies
    • [ The Sims Mobile ] TSM Game Cheats v50.0.0 +2
      Modded/Hacked App: TSM Game By EA Swiss Sarl
      Bundle ID: com.ea.ios.simsmobile
      iTunes Store Link: https://apps.apple.com/us/app/tsm-game/id1144258115?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

      - Multiply Coin and Cash Earned
      - Infinite Energy


      WARNING Complete the tut first !!!! will destroy game if not. This hack is an In-Game Mod Menu (iGMM)

       

      Non-Jailbroken Hack: https://iosgods.com/topic/66166-the-sims-mobile-tsm-game-v4802-jailed-cheats-2/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/66035-the-sims-mobile-tsm-game-cheats-v4901-2/
      • 3,958 replies
    • Seraphim Saga: Idle RPG Cheats v1.8.2 +2
      Modded/Hacked App: Seraphim Saga: Idle RPG By EOAG Games Co.,Ltd
      Bundle ID: com.EOAG.WingsIdle
      App Store Link: https://apps.apple.com/us/app/seraphim-saga-idle-rpg/id6633424325?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

      - God Mode
      - Multiply Attack

       

      Free Non-Jailbroken Hack: https://iosgods.com/topic/195094-seraphim-saga-idle-rpg-v180-jailed-cheats-2/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/195092-seraphim-saga-idle-rpg-cheats-v180-2/
      • 24 replies
    • The Seven Deadly Sins: Idle Cheats v1.15.2 +4
      Modded/Hacked App: The Seven Deadly Sins: Idle By Netmarble Corporation
      Bundle ID: com.netmarble.nanarise
      iTunes Store Link: https://apps.apple.com/us/app/the-seven-deadly-sins-idle/id6469305531?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

      - Multiply Attack
      - Multiply Defense
      - Modify Range
      - No Ads


      DO NOT BUY VIP FOR THIS CHEAT

      ONLY WORK in PvE so you can farm faster

      Non-Jailbroken Hack: https://iosgods.com/topic/185162-the-seven-deadly-sins-idle-v1120-jailed-cheats-3/

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/185131-the-seven-deadly-sins-idle-cheats-v1120-4/
      • 146 replies
    • Angry Birds 2 Cheats v3.28.2 +1 [ Infinite Currencies ]
      Modded/Hacked App: Angry Birds 2 By Rovio Entertainment Oyj
      Bundle ID: com.rovio.baba
      iTunes Store Link: https://apps.apple.com/us/app/angry-birds-2/id880047117?uo=4


      Hack Features:
      - Infinite Currencies ( Spend some/ Get some )


      Non-Jailbroken & No Jailbreak required hack(s):  https://iosgods.com/topic/70081-angry-birds-2-v2600-jailed-cheats-2/


      Hack Download Link: https://iosgods.com/topic/72039-angry-birds-2-cheats-v2600-1-infinite-currencies/
      • 1,955 replies
    • MARVEL Future Fight Cheats v11.0.0 17++
      Modded/Hacked App: MARVEL Future Fight By Netmarble Games Corp.
      Bundle ID: com.netmarble.mheros
      iTunes Link: https://itunes.apple.com/us/app/marvel-future-fight/id955705796?mt=8&uo=4&at=1010lce4



      Hack Features
      - God Mode / Enemy Does 1 Damage / Never Die. May be a bit buggy.
      - High Damage / Damage Multiplier / One Hit Kill. Kill enemies with 1 hit.
      - No Skill Cooldown Time. Instant skill use without having to wait for reuse.
      - No Special Skill Cooldown Time. Instant special skill use without having to wait 120+ seconds to reuse it.
      - No Cooldown Time To Swap Heroes. Swap heroes instantly anytime.
      - Assistant Will Never Leave Once Called. Assistant will be available during the whole map once called.
      - Heroes Level 60. Level 60 heroes have higher HP and Damage output. The hack makes them lvl 60 in-game. However, when turned off, the heroes will be the level they previously were.
      - Infinite Buff Time. When swapping a hero, you gain a shield around him/her. That shield will stay with you throughout the rest of the game thus making you invincible.
      - Enemies Don't Move & Attack! An (better) alternative to God Mode. Enemies do not move or attack you therefore you cannot die.
      • 2,925 replies
    • FarmVille 2: Country Escape Cheats v27.8 +1
      Modded/Hacked App: FarmVille 2: Country Escape by Zynga Inc.
      Bundle ID: com.zynga.FarmVille2CountryEscape
      iTunes Store Link: https://apps.apple.com/us/app/farmville-2-country-escape/id824318267?uo=4&at=1010lce4


      Hack Features:
      - Freeze Key


      iOS Hack Download Link: https://iosgods.com/topic/101607-arm64-farmville-2-country-escape-cheats-v1263984-1/
      • 1,998 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