Advertisement
grymlahv

weston modinfo

Jun 28th, 2020
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. name = "Weston the Wandering Cactus"
  2. description = "Adds Weston to the list of playable characters."
  3. author = "Spookers the Spoo, port by Zero"
  4. version = "1.34"
  5. dont_starve_compatible = false
  6. reign_of_giants_compatible = false
  7. shipwrecked_compatible = false
  8. dst_compatible = true
  9. all_clients_require_mod = true
  10.  
  11. -- This is the URL name of the mod's thread on the forum; the part after the index.php? and before the first & in the URL
  12. -- Example:
  13. -- http://forums.kleientertainment.com/index.php?/files/file/202-sample-mods/
  14. -- becomes
  15. -- /files/file/202-sample-mods/
  16. forumthread = "/files/file/202-sample-mods/"
  17.  
  18. -- This lets other players know if your mod is out of date, update it to match the current version in the game
  19. api_version = 10
  20.  
  21. icon_atlas = "modicon.xml"
  22. icon = "modicon.tex"
  23.  
  24. server_filter_tags = {
  25. "character",
  26. "weston",
  27. }
  28.  
  29. configuration_options =
  30. {
  31. {
  32. name = "MAX_TEMP",
  33. label = "Overheating",
  34. options = {
  35. {description = "Disabled", data = 2},
  36. {description = "Enabled", data = 1},
  37. },
  38. default = 2,
  39. hover = "Disabled by default."
  40. },
  41.  
  42. {
  43. name = "FIREDMG_SCALE",
  44. label = "Fire damage scale",
  45. options = {
  46. {description = "x1", data = 1},
  47. {description = "x2", data = 2},
  48. {description = "x3", data = 3},
  49. {description = "x4", data = 4},
  50. },
  51. default = 3,
  52. hover = "Default is x3."
  53. },
  54.  
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement