VASABIcz / Leanin

minnecraft command dsl

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dsl command generator

  • minecraft warp command plugin
  • create minecraft command from safety of kotlin dsl
  • no yaml config
  • real time autocompletion
  • inspired by ktor routing
commands {
    command("echo") {
        callback("{text}", tab = { sender, parameters ->
            listOf("hello", "test")
        }) {
            val text = it.parameters["text"]
            it.sender.sendMessage("$text")
        }
    }
}

About

minnecraft command dsl


Languages

Language:Kotlin 100.0%