Skip to main content
Version: Next

Setup

Be aware that MessageChain only supports Fabric at the moment.

Adding to your project as a dependency

We recommend you add the project as a dependency but not import the whole JAR file.

For your Gradle project, there are some files that you should modify.

The packages are stored on Modrinth, so you should add the Modrinth maven repository.

build.gradle
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}

...

dependencies {
// MessageChain
modImplementation "maven.modrinth:messagechain:${project.messagechain_version}"
modLocalRuntime "maven.modrinth:messagechain:${project.messagechain_version}"
}

Then the project will be added.