promotional bannermobile promotional banner

StatBounds

Configure the min and max values of player stats such as health and stamina.

Important Note - This is an early implementation of stat modification that has some notable issues, including but not limited to the following:

Setting a "HealthMin" above 0 does not guarantee invincibility, as any damage source larger than the set minimum value can kill the player on the same tick the mod updates the health stat.

Some visual jitter may occur in the UI if the game is attempting to set a stat past its set bounds.

The config currently cannot be used to gain stats beyond Hytale's traditional caps (ex. "HealthMax": 1000000.0 will not give you this much max health, as the game's health cap is 100.0).

~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

 

This mod adds a config file in the mods folder of your world (saves/[world_name]/mods/Kerbe_StatBounds/StatsConfig.json) that allows you to modify the game's stats for convenience or challenge-based purposes.

The current stats that can be modified are Health, Oxygen, Mana, and Stamina. To change any stats, open the StatsConfig.json file and refresh the world after applying any changes.

Note that the config settings may fail if the wrong syntax is used or a Min variable is set to a value larger than the corresponding Max variable.

 

~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Default Config Settings:

~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

{
"HealthMin": 0.0,
"HealthMax": 100.0,
"OxygenMin": 0.0,
"OxygenMax": 100.0,
"ManaMin": 0.0,
"ManaMax": 100.0,
"StaminaMin": 0.0,
"StaminaMax": 10.0,
"EnableBounds": true
}

 

~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Sample Presets:

~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Damageless

"HealthMin": 0.0,
"HealthMax": 1.0

 

Infinite Oxygen

"HealthMin": 100.0,
"HealthMax": 100.0

 

Infinite Stamina

"StaminaMin": 10.0,
"StaminaMax": 10.0

 

Limited Mana

"ManaMin": 0.0,
"ManaMax": 100.0

 

~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Disable Mod Settings

"EnableBounds": false

 

The StatBounds Team

profile avatar
  • 3
    Followers
  • 3
    Projects
  • 196.8K
    Downloads