Guest User

Untitled

a guest
Jun 25th, 2023
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.50 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="[43,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
  10. # The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties.
  11. # Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here.
  12. license="All rights reserved"
  13. # A URL to refer people to when problems occur with this mod
  14. #issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional
  15. # A list of mods - how many allowed here is determined by the individual mod loader
  16. [[mods]] #mandatory
  17. # The modid of the mod
  18. modId="royalcrowns" #mandatory
  19. # The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
  20. # ${file.jarVersion} will substitute the value of the Implementation-Version as read from the mod's JAR file metadata
  21. # see the associated build.gradle script for how to populate this completely automatically during a build
  22. version="${file.jarVersion}" #mandatory
  23. # A display name for the mod
  24. displayName="Royal Crowns" #mandatory
  25. # A URL to query for updates for this mod. See the JSON update specification https://mcforge.readthedocs.io/en/latest/gettingstarted/autoupdate/
  26. #updateJSONURL="https://change.me.example.invalid/updates.json" #optional
  27. # A URL for the "homepage" for this mod, displayed in the mod UI
  28. #displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional
  29. # A file name (in the root of the mod JAR) containing a logo for display
  30. logoFile="" #optional
  31. # A text field displayed in the mod UI
  32. credits="Thanks for this example mod goes to Java" #optional
  33. # A text field displayed in the mod UI
  34. authors="Love, Cheese and small house plants" #optional
  35. # Display Test controls the display for your mod in the server connection screen
  36. # MATCH_VERSION means that your mod will cause a red X if the versions on client and server differ. This is the default behaviour and should be what you choose if you have server and client elements to your mod.
  37. # IGNORE_SERVER_VERSION means that your mod will not cause a red X if it's present on the server but not on the client. This is what you should use if you're a server only mod.
  38. # IGNORE_ALL_VERSION means that your mod will not cause a red X if it's present on the client or the server. This is a special case and should only be used if your mod has no server component.
  39. # NONE means that no display test is set on your mod. You need to do this yourself, see IExtensionPoint.DisplayTest for more information. You can define any scheme you wish with this value.
  40. # IMPORTANT NOTE: this is NOT an instruction as to which environments (CLIENT or DEDICATED SERVER) your mod loads on. Your mod should load (and maybe do nothing!) whereever it finds itself.
  41. #displayTest="MATCH_VERSION" # MATCH_VERSION is the default if nothing is specified (#optional)
  42.  
  43. # The description text for the mod (multi line!) (#mandatory)
  44. description='''
  45. '''
  46. # A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
  47. [[dependencies.royalcrowns]] #optional
  48. # the modid of the dependency
  49. modId="forge" #mandatory
  50. # Does this dependency have to exist - if not, ordering below must be specified
  51. mandatory=true #mandatory
  52. # The version range of the dependency
  53. versionRange="[43,)" #mandatory
  54. # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
  55. ordering="NONE"
  56. # Side this dependency is applied on - BOTH, CLIENT or SERVER
  57. side="BOTH"
  58. # Here's another dependency
  59. [[dependencies.royalcrowns]]
  60. modId="minecraft"
  61. mandatory=true
  62. # This version range declares a minimum of the current minecraft version up to but not including the next major version
  63. versionRange="[1.19.2,1.20)"
  64. ordering="NONE"
  65. side="BOTH"
  66.  
Add Comment
Please, Sign In to add comment