Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 970 Bytes

getting-started.md

File metadata and controls

28 lines (20 loc) · 970 Bytes

Commands

This module extends the functionality of vanilla command completely server-side, allowing for custom argument types as well as providing the ability to add 'single use' commands which are useful for clickable text components.

This module also provides kotlin type safe builders for building command trees.

Adding to Dependencies

The extensions module depends on some other arcade modules; it's recommended that you include all of these.

repositories {
    maven("https://maven.supersanta.me/snapshots")
}

dependencies {
    include(modImplementation("net.casualchampionships:arcade-commands:0.4.0-beta.1+1.21.4")!!)

    include(modImplementation("net.casualchampionships:arcade-event-registry:0.4.0-beta.1+1.21.4")!!)
    include(modImplementation("net.casualchampionships:arcade-events-server:0.4.0-beta.1+1.21.4")!!)
    include(modImplementation("net.casualchampionships:arcade-utils:0.4.0-beta.1+1.21.4")!!)
}