Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. modLoader="javafml" #mandatory
  2. # A version range to match for said mod loader - for regular FML @Mod it will be the forge version
  3. loaderVersion="[25,)" #mandatory (24 is current forge version)
  4. # A URL to refer people to when problems occur with this mod
  5. issueTrackerURL="https://github.com/LotuxPunk/K-9-1.13/issues" #optional
  6. # A list of mods - how many allowed here is determined by the individual mod loader
  7. [[mods]] #mandatory
  8. # The modid of the mod
  9. modId="k9" #mandatory
  10. # The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
  11. version="${file.jarVersion}" #mandatory
  12. # A display name for the mod
  13. displayName="K-9's mod" #mandatory
  14. # A URL to query for updates for this mod. See the JSON update specification <here>
  15. updateJSONURL="" #optional
  16. # A URL for the "homepage" for this mod, displayed in the mod UI
  17. displayURL="https://github.com/LotuxPunk/K-9-1.13" #optional
  18. # A file name (in the root of the mod JAR) containing a logo for display
  19. logoFile="" #optional
  20. # A text field displayed in the mod UI
  21. credits="" #optional
  22. # A text field displayed in the mod UI
  23. authors="LotuxPunk" #optional
  24. # The description text for the mod (multi line!) (#mandatory)
  25. description="If you didn't know it K9 is literally the Doctor's robot dog (a bit forgotten in the 2008 season) and so I put myself in the head to create this mod."
  26. # A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
  27. [[dependencies.k9]] #optional
  28. # the modid of the dependency
  29. modId="forge" #mandatory
  30. # Does this dependency have to exist - if not, ordering below must be specified
  31. mandatory=true #mandatory
  32. # The version range of the dependency
  33. versionRange="[25,)" #mandatory
  34. # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
  35. ordering="NONE"
  36. # Side this dependency is applied on - BOTH, CLIENT or SERVER
  37. side="BOTH"
  38. # Here's another dependency
  39. [[dependencies.k9]]
  40. modId="minecraft"
  41. mandatory=true
  42. versionRange="[1.13.2]"
  43. ordering="NONE"
  44. side="BOTH"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement