Download Slate — Minecraft Mods — MetaMods

Slate

Active

Downloads

1

Last update

9 months ago

Versions

1.21.3 — 1.21.4
Server
Fabric
Libraries
Utils

Slate

Slate is a specialized library for Minecraft server-side developers that significantly simplifies the process of creating neat and functional server-side screens.

Getting Started

The Slate library is designed with an emphasis on ease of use and intuitive interface.

val slate = slate()
slate.open(player)

Just two lines of code - and you get a ready-made foundation for working with screens! To explore the customization capabilities of your interface, we recommend referring to the official documentation.

Installing Dependencies

To connect Slate as a dependency in your project, use our public Maven repository.

build.gradle

repositories {
    maven {
        name = "MC Brawls"
        url  = "https://maven.mcbrawls.net/releases/"
    }
}

dependencies {
    include modImplementation ("net.mcbrawls:slate:$slate_version")
}

gradle.properties

slate_version=1.0