Gunpowder
Gunpowder aims to provide an all-in-one API for your server modding needs. While designed for servers, it does work in singleplayer too, as do all of our official modules.
Modules
Gunpowder offers the following (official) modules:
Support
If you find a bug or want to suggest a feature, go to the Issues tab If the bug is related to one of our modules, go to that specific module here If you want to ask for help and/or clarify a bug, or even contribute to the project, you can find us on the AOF discord in #gunpowder
License
This mod is available under the MIT license.
Contributing
More information will be provided soon. Contributions should follow the guidelines in CONTRIBUTING.md.
Extending
If you want to use Gunpowder, add the following to your build.gradle:
dependencies {
modApi "io.github.gunpowder:gunpowder-api:${gunpowder_version}+${minecraft_version}"
}
repositories {
maven {
name = "Gunpowder"
url = "https://maven.martmists.com/releases"
}
}
Create a class extending GunpowderModule (e.g. com.example.ExampleModule), and then fabric.mod.json, add:
{
"entrypoints": {
"gunpowder:modules": [
"com.example.ExampleModule"
]
}
}
