Advertisement
Kody104

modinfo.lua

Oct 9th, 2016
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.96 KB | None | 0 0
  1. -- This information tells other players more about the mod
  2. name = "Michelle the Miner"
  3. description = "Michelle the miner character mod"
  4. author = "Kody104"
  5. version = "0.0.1" -- This is the version of the template. Change it to your own number.
  6.  
  7. -- This is the URL name of the mod's thread on the forum; the part after the ? and before the first & in the url
  8. forumthread = "/files/file/950-extended-sample-character/"
  9.  
  10.  
  11. -- This lets other players know if your mod is out of date, update it to match the current version in the game
  12. api_version = 10
  13.  
  14. -- Compatible with Don't Starve Together
  15. dst_compatible = true
  16.  
  17. -- Not compatible with Don't Starve
  18. dont_starve_compatible = false
  19. reign_of_giants_compatible = false
  20.  
  21. -- Character mods need this set to true
  22. all_clients_require_mod = true
  23.  
  24. icon_atlas = "modicon.xml"
  25. icon = "modicon.tex"
  26.  
  27. -- The mod's tags displayed on the server list
  28. server_filter_tags = {
  29. "character",
  30. }
  31.  
  32. --configuration_options = {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement