2020-03-25 04:28:55 +00:00
|
|
|
# This is an example mods.toml file. It contains the data relating to the loading mods.
|
|
|
|
# There are several mandatory fields (#mandatory), and many more that are optional (#optional).
|
|
|
|
# The overall format is standard TOML format, v0.5.0.
|
|
|
|
# Note that there are a couple of TOML lists in this file.
|
|
|
|
# Find more information on toml format here: https://github.com/toml-lang/toml
|
|
|
|
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
|
|
|
|
modLoader="javafml" #mandatory
|
|
|
|
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
|
2023-06-11 22:46:15 +00:00
|
|
|
loaderVersion="[46,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
|
2020-08-22 00:36:15 +00:00
|
|
|
license="https://raw.githubusercontent.com/cabaletta/baritone/1.16.2/LICENSE"
|
2020-03-25 04:28:55 +00:00
|
|
|
# A URL to refer people to when problems occur with this mod
|
2020-03-26 00:23:41 +00:00
|
|
|
issueTrackerURL="https://github.com/cabaletta/baritone/issues" #optional
|
2020-03-25 04:28:55 +00:00
|
|
|
# A list of mods - how many allowed here is determined by the individual mod loader
|
|
|
|
[[mods]] #mandatory
|
|
|
|
# The modid of the mod
|
2020-03-26 00:23:41 +00:00
|
|
|
modId="baritoe" #mandatory
|
2020-03-25 04:28:55 +00:00
|
|
|
# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
|
2022-12-02 06:04:40 +00:00
|
|
|
version="${version}" #mandatory
|
2020-03-25 04:28:55 +00:00
|
|
|
# A display name for the mod
|
2020-03-26 00:23:41 +00:00
|
|
|
displayName="Baritone" #mandatory
|
2020-03-25 04:28:55 +00:00
|
|
|
# A URL for the "homepage" for this mod, displayed in the mod UI
|
2020-03-26 00:23:41 +00:00
|
|
|
displayURL="https://github.com/cabaletta/baritone" #optional
|
2020-03-25 04:28:55 +00:00
|
|
|
# A file name (in the root of the mod JAR) containing a logo for display
|
2020-03-26 00:23:41 +00:00
|
|
|
#logoFile="examplemod.png" #optional
|
2020-03-25 04:28:55 +00:00
|
|
|
# A text field displayed in the mod UI
|
2020-03-26 00:23:41 +00:00
|
|
|
credits="Hat Gamers" #optional
|
2020-03-25 04:28:55 +00:00
|
|
|
# A text field displayed in the mod UI
|
2020-03-26 00:23:41 +00:00
|
|
|
authors="leijurv, Brady" #optional
|
2020-03-25 04:28:55 +00:00
|
|
|
# The description text for the mod (multi line!) (#mandatory)
|
|
|
|
description='''
|
2020-03-26 00:23:41 +00:00
|
|
|
A Minecraft pathfinder bot.
|
2020-03-25 04:28:55 +00:00
|
|
|
'''
|
|
|
|
|
2022-07-21 18:16:21 +00:00
|
|
|
[[dependencies.baritoe]]
|
|
|
|
modId="minecraft"
|
|
|
|
mandatory=true
|
|
|
|
# This version range declares a minimum of the current minecraft version up to but not including the next major version
|
2023-06-14 01:32:55 +00:00
|
|
|
versionRange="[1.20.1]"
|
2022-07-21 18:16:21 +00:00
|
|
|
ordering="NONE"
|
2023-04-13 21:00:11 +00:00
|
|
|
side="BOTH"
|