An Ignite mod implementation of SlimeLoader for Paper.
Mod version | Compatible Paper version |
---|---|
0.1 | 1.21.3, 1.21.4 |
Firstly, follow the Ignite installation instructions.
Then, navigate to releases or actions page and download the latest mod artifact for your platform.
After downloading, place the mod jar file inside your server's mods
directory.
Finally, you can simply launch your server just like before and enjoy your slime worlds! (note: remember to launch the ignite jar, not your platform jar.)
SlimeIgnite API is available in our maven repository.
Depending on your target mod version, you would need:
repositories {
// for releases
maven("https://repo.roxymc.net/releases")
// for snapshots
maven("https://repo.roxymc.net/snapshots")
}
and
dependencies {
implementation("net.roxymc:slimeignite-api:VERSION")
}
To compile, navigate to project root directory and run:
./gradlew shadowJar