Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@allencch
Created March 14, 2021 05:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save allencch/34feef6953a03680938ba186ff8f2f23 to your computer and use it in GitHub Desktop.
Save allencch/34feef6953a03680938ba186ff8f2f23 to your computer and use it in GitHub Desktop.
Hades Lua script cheat
diff --git a/Combat.lua b/Combat.lua
index d9df948..2cc3e32 100644
--- a/Combat.lua
+++ b/Combat.lua
@@ -867,6 +867,7 @@ function DamageEnemy( victim, triggerArgs )
end
end
+ triggerArgs.DamageAmount = triggerArgs.DamageAmount * 10
if triggerArgs.DamageAmount == 0 then
return
end
diff --git a/DeathLoop.lua b/DeathLoop.lua
index d36c3f8..226a93b 100644
--- a/DeathLoop.lua
+++ b/DeathLoop.lua
@@ -162,6 +162,7 @@ function StartDeathLoop( currentRun )
EnableCombatControls()
ShowCombatUI()
+ currentRun.Money = 80000
end
function SetupDeathArea( currentRun )
@@ -346,7 +347,7 @@ function StartOver()
AddInputBlock({ Name = "MapLoad" })
LoadMap({ Name = currentRun.CurrentRoom.Name, ResetBinks = true, ResetWeaponBinks = true })
-
+ currentRun.Money = 80000
end
function FlashbackLeftBedroom( source )
diff --git a/HeroData.lua b/HeroData.lua
index 72cb55a..2b2705a 100644
--- a/HeroData.lua
+++ b/HeroData.lua
@@ -3,8 +3,8 @@ HeroData =
DefaultHero =
{
DefaultWeapon = "SwordWeapon",
- MaxHealth = 50,
- MaxHealthMultiplier = 1,
+ MaxHealth = 90000,
+ MaxHealthMultiplier = 2,
LastStands = {},
UnusedWeaponThreshold = 3,
DashManeuverTimeThreshold = 0.4,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment