Advertisement
Guest User

Untitled

a guest
Dec 26th, 2019
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 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. # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
  7. modLoader="javafml" #mandatory
  8. # A version range to match for said mod loader - for regular FML @Mod it will be the forge version
  9. loaderVersion="[30,)" #mandatory (28 is current forge version)
  10. # A URL to refer people to when problems occur with this mod
  11. issueTrackerURL="http://my.issue.tracker/" #optional
  12. # A list of mods - how many allowed here is determined by the individual mod loader
  13. [[mods]] #mandatory
  14. # The modid of the mod
  15. modId="ultimamod" #mandatory
  16. # The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
  17. version="${file.jarVersion}" #mandatory
  18. # A display name for the mod
  19. displayName="Example Mod" #mandatory
  20. # A URL to query for updates for this mod. See the JSON update specification <here>
  21. updateJSONURL="http://myurl.me/" #optional
  22. # A URL for the "homepage" for this mod, displayed in the mod UI
  23. displayURL="http://example.com/" #optional
  24. # A file name (in the root of the mod JAR) containing a logo for display
  25. logoFile="ultimamod.png" #optional
  26. # A text field displayed in the mod UI
  27. credits="Thanks for this example mod goes to Java" #optional
  28. # A text field displayed in the mod UI
  29. authors="Love, Cheese and small house plants" #optional
  30. # The description text for the mod (multi line!) (#mandatory)
  31. description='''
  32. This mod contains new items, blocks, ores, biomes, generated structures, and more.
  33.  
  34. I have no idea what I'm doing. Subscribe to [channel name] on YouTube.
  35. '''
  36. # A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
  37. [[dependencies.ultimamod]] #optional
  38. # the modid of the dependency
  39. modId="forge" #mandatory
  40. # Does this dependency have to exist - if not, ordering below must be specified
  41. mandatory=true #mandatory
  42. # The version range of the dependency
  43. versionRange="[30,)" #mandatory
  44. # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
  45. ordering="NONE"
  46. # Side this dependency is applied on - BOTH, CLIENT or SERVER
  47. side="BOTH"
  48. # Here's another dependency
  49. [[dependencies.ultimamod]]
  50. modId="minecraft"
  51. mandatory=true
  52. versionRange="[1.15.1]"
  53. ordering="NONE"
  54. side="BOTH"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement