Jump to content

Configurable Hunger mod


Recommended Posts

 

 
With this mod the food meter now decreases as you wish
 
the settings are from Tiny hunger = 50% slower starving than default to Endless hunger = 200% faster starving than default for default game starving setting you can choose Medium
 

Steam links:
 
Better metabolism for Don't starve Together
 
Better metabolism for Don't starve

Edited by Morphogenic
Link to comment
Share on other sites

  • Developer

Do you have configuration data specified in your modinfo.lua file?

An example of this would be 

configuration_options ={    {        name = "hunt_time",        label = "Hunt Time",        options =         {            {description = "5 minutes", data = 5},            {description = "10 minutes", data = 10},            {description = "30 minutes", data = 30},            {description = "1 hour", data = 60},            {description = "Endless", data = -1 },        },        default = 10,    }}
Link to comment
Share on other sites

  • Developer

@Morphogenic, we decided it was a quick fix to add optional hover text descriptions to the configuration label and spinner. You'll be able to add the hover text to both the label and the individual spinner items. This will be coming in the next update.

 

 You'll just need to update your modinfo configuration_options to have the hover fields. Here's an example of how it will look.

configuration_options ={    {        name = "hunt_time",        label = "Hunt Time",        hover = "This is how much time you will have in each round to play.",        options =         {            {description = "5 minutes", data = 5, hover = "A pretty short game."},            {description = "10 minutes", data = 10},            {description = "30 minutes", data = 30},            {description = "1 hour", data = 60},            {description = "Endless", data = -1, hover = "The game will continue until all players are dead." },        },        default = 10,    }}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
  • Create New...