Rabbitowner

mods.toml

Aug 27th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. modLoader="javafml"
  2.  
  3. loaderVersion="[31,)"
  4.  
  5. issueTrackerURL="http://my.issue.tracker/"
  6.  
  7. [[mods]]
  8.  
  9. modId="firstmod"
  10.  
  11. version="0.1"
  12.  
  13. displayName="My First Mod"
  14.  
  15. updateJSONURL="http://myurl.me/"
  16.  
  17. displayURL="http://example.com/"
  18.  
  19. logoFile="examplemod.png"
  20.  
  21. credits="rabbitowner"
  22.  
  23. authors="rabbitowner"
  24.  
  25. description='''
  26. test
  27. '''
  28.  
  29.  
  30. [[dependencies.firstmod]] #optional
  31. # the modid of the dependency
  32. modId="forge" #mandatory
  33. # Does this dependency have to exist - if not, ordering below must be specified
  34. mandatory=true #mandatory
  35. # The version range of the dependency
  36. versionRange="[31,)" #mandatory
  37. # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
  38. ordering="NONE"
  39. # Side this dependency is applied on - BOTH, CLIENT or SERVER
  40. side="BOTH"
  41.  
  42.  
  43. [[dependencies.firstmod]]
  44. modId="minecraft"
  45. mandatory=true
  46. versionRange="[1.15.2]"
  47. ordering="NONE"
  48. side="BOTH"
  49.  
Add Comment
Please, Sign In to add comment