Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. # This is an example mods.toml file. It contains the data relating to the loading mods.
  2. # There are several mandatory fields (#mandatory), and many more that are optional (#optional).
  3. # The overall format is standard TOML format, v0.5.0.
  4. # Note that there are a couple of TOML lists in this file.
  5. # Find more information on toml format here: https://github.com/toml-lang/toml
  6.  
  7. modLoader="javafml" #mandatory
  8.  
  9. loaderVersion="[31,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
  10.  
  11. issueTrackerURL=""
  12.  
  13. [[mods]]
  14.  
  15. # The modid of the mod
  16. modId="watermelon6903" #mandatory
  17.  
  18. version="1.0" #mandatory
  19.  
  20. displayName="First Mod" #mandatory
  21.  
  22. updateJSONURL="http://myurl.me/"
  23.  
  24. displayURL="http://example.com/" #optional
  25.  
  26. logoFile="examplemod.png"
  27.  
  28. credits="Watermelon6903"
  29.  
  30. # A text field displayed in the mod UI
  31. authors="Watermelon6903"
  32.  
  33. description='''
  34. my first mod!
  35. '''
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42. [[dependencies.watermelon6903]] #optional
  43. # the modid of the dependency
  44. modId="forge" #mandatory
  45. # Does this dependency have to exist - if not, ordering below must be specified
  46. mandatory=true #mandatory
  47. # The version range of the dependency
  48. versionRange="[31,)" #mandatory
  49. # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
  50. ordering="NONE"
  51. # Side this dependency is applied on - BOTH, CLIENT or SERVER
  52. side="BOTH"
  53.  
  54. # Here's another dependency
  55. [[dependencies.watermelon6903]]
  56. modId="minecraft"
  57. mandatory=true
  58. versionRange="[1.15.2]"
  59. ordering="NONE"
  60. side="BOTH"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement