config.lua

Full View

Config = {}

-- Rain intensity threshold to activate slow speed (range: 0.0 - 1.0).
Config.RainLevel = 0.5
-- Slow running speed during heavy rain (range: 0.0 - 10.0; normal speed is 10.0).
Config.RainSlowRunSpeed = 5.0

-- Snow intensity threshold to activate slow speed
Config.SnowLevel = 0.1
-- Slow running speed during heavy snowfall (range: 0.0 - 10.0; normal speed is 10.0).
Config.SnowSlowRunSpeed = 5.0

-- Health threshold for applying limping effects (minimum health is 100, maximum health is 200).
Config.LimpingHealth = 150

Last updated