Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 1.38 KB

README.md

File metadata and controls

55 lines (36 loc) · 1.38 KB

SlimeIgnite

An Ignite mod implementation of SlimeLoader for Paper.

Supported versions

Mod version Compatible Paper version
0.1 1.21.3, 1.21.4

Usage

Mod installation

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.)

For developers (API)

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")
}

Compiling

To compile, navigate to project root directory and run:

./gradlew shadowJar