Advertisement
Guest User

modinfo.lua

a guest
Jul 22nd, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.63 KB | None | 0 0
  1. name = "Simple HUD"
  2. description = "A very simple mod that shows your stats all the time. Hovering your mouse over the stats shows the stat's maximum capacity."
  3. author = "Mouse"
  4. version = "1.1"
  5.  
  6. forumthread = ""
  7.  
  8. api_version = 6
  9.  
  10. icon_atlas = "shud.xml"
  11. icon = "shud.tex"
  12.  
  13. dont_starve_compatible = true
  14. reign_of_giants_compatible = true
  15.  
  16. configuration_options =
  17. {
  18.     {
  19.         name = "displayTemperature",
  20.         label = "Display Temperature",
  21.         options =
  22.         {
  23.             {description = "No", data = "no"},
  24.             {description = "Yes", data = "yes"}
  25.         },
  26.         default = "yes",
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement