
RPdepent
This is a simple Minecraft mod that checks whether the resource pack dependencies are present in your installed mods.
- Загрузки
- 877
- Подписчики
- 8
- Обновлён
- 25 июня 2026 г.
- Лицензия
- GPL-3.0-only
Опубликован 27 октября 2025 г.

for resource pack and data pack creators:
you just need to put in the root of your resource pack/data pack a file named "RPD.toml", like this:

and inside the file you need to do something like this:
[[Mods]]
id = "coolMod"
version = "1.2"
[[Mods]]
id = "anotherCoolMod"
version = "3.23"
to be noted:
the empty line between one mod and another is necessary, so configs like:
[[Mods]]
id = "coolMod"
version = "1.2"
[[Mods]]
id = "anotherCoolMod"
version = "3.23"
and
[[Mods]]
id = "coolMod"
version = "1.2"
id = "anotherCoolMod"
version = "3.23"
are WRONG!
you can also write "any" instead of the version to allow any mod version to be used
[[Mods]]
id = "coolMod"
version = "any"
[[Mods]]
id = "anotherCoolMod"
version = "3.23"
Mods alternatives
with this you can have multiple alternatives for a mod
[[Mods]]
id = "coolmod"
version = "any"
[[Mods.Alternatives]] #the indentation is highly suggested
first = {id = "mod", version = "1.21"}
second = {id = "boringmod", version = "0.2"}
[[Mods]]
id = "leggenadarymod"
version = "any"
[[Mods.Alternatives]] # but as shown here, not necessary
potato = {id = "normalmod", version = "1.21"}
i suggest to use the indentation because it's more understandable for you and whoever read the file after you
this is the legacy config to allow alternative mods
i highly suggest you to use the new method, this one is here only for retro-compatibility
[[Mods]]
id = "coolMod||lessCoolMod"
version = "any"
[[Mods]]
id = "boringMod||epicMod||suckerMod"
version = "any"
so RPdepent will check if there is at least 1 of the mods be aware that it's suggested to just put "any" in the version field since you can't decide (yet) the version for each of them
TO BE NOTED:
it's highly suggested to just use "any" in the version field since there is no ">", "<" , ">=", "<=" operator, it's impossible to do with mods versions
how to build
You just need to clone the repository on your IDE and run the gradle task "build"
Icons made by Cyber, thank you Cyber :p
Ченджлог
2.1+26.2Релиз26.1.1, 26.1.2, 26.2 · 25 июня 2026 г.
updated to support 26.1, 26.1.2 and 26.2
2.1+1.21.xРелиз1.21.9, 1.21.10, 1.21.11 · 14 марта 2026 г.
now the warning screen allow to scroll if the mods overflow, has colors and there i a new spec for the config
2.0+1.21.11Бета1.21.9, 1.21.10, 1.21.11 · 1 марта 2026 г.
- dependencies declaration file now uses TOML
- new logging system to log everthing releated to the mod in a separate file called RPdepent.log
- cleared a little the code
1.4+1.21.11Бета1.21.9, 1.21.10, 1.21.11 · 27 февраля 2026 г.
added datapack support, now you can have a RPD.txt file in the root folder of the datapack and it will be found by the mod
1.3+1.21.11Бета1.21.11 · 30 декабря 2025 г.
now the text wrap and is more readble
1.1Альфа1.21.8 · 13 ноября 2025 г.
What's Changed
- Added OR operator by axolotl-git and BatZupper
Full Changelog: https://github.com/axolotl-git/RPdepent/compare/1.21.8-fabric...RPdependent-1.1-fabric-.1.21
Комментарии
Загружаем…