-
Notifications
You must be signed in to change notification settings - Fork 17
Developing
A guide for developers is still under construction!
This is a short guide for mod developers. For example: If you want to test compatibility, create an add-on etc.
First, we will need to add some code to the build.gradle
repositories {
maven {
url = "https://www.cursemaven.com"
}
}
// file_id
// 1.3.0-1.16.5: 3370881
dependencies {
compile fg.deobf('curse.maven:advancednetherite-495336:<file_id>')
}
More information about adding a Cursemaven project to the build.gradle
can be found here!
A full list of Advanced Netherite versions can be found here!
When creating an add-on for Advanced Netherite you will also need to add some code to your mods.toml
[[dependencies.<your_mod_id>]]
modId="advancednetherite"
mandatory=true #or false if you don't use any content from this mod.
versionRange="[1.3.0,)"
ordering="NONE"
side="BOTH"
More information about the mods.toml
can be found here!
The source code of the mod can be viewed here!
Join Autovw's Modding Community Discord Server to get notified about updates, mod support and more!
Getting started
Advanced Netherite 2.0
Minecraft 1.19.4 and above
Content
Technical
- Configuration & settings (WIP)
- Version History
Advanced Netherite 1.0
Minecraft 1.16.5 - 1.19.4
Content
Technical