Added New Mods and Profiles Folders

This is a complete rebuild of the modpack, with all new mods and updates for 1.5.3 of Anomaly.
This commit is contained in:
2025-01-14 05:07:53 -05:00
parent 85c665b107
commit 376b4b9689
21217 changed files with 546254 additions and 0 deletions
@@ -0,0 +1,19 @@
local speeds = {}
local function actor_on_first_update()
speeds[0] = db.actor:get_actor_run_coef()
speeds[1] = db.actor:get_actor_runback_coef()
speeds[2] = db.actor:get_actor_sprint_koef()
end
function actor_on_update()
run_coeff = grok_gotta_go_fast_mcm.get_config("gotta_go_fast_run")
sprint_coeff = grok_gotta_go_fast_mcm.get_config("gotta_go_fast_sprint")
speed.add_speed("gotta_go_fast_run", run_coeff , false, true)
speed.add_speed("gotta_go_fast_sprint", sprint_coeff, true, true)
end
function on_game_start()
RegisterScriptCallback("actor_on_first_update",actor_on_first_update)
RegisterScriptCallback("actor_on_update",actor_on_update)
end