ServerEvents.basicCommand
#Available Event Fields
event.player
- player entityevent.input
- string (Only 1.21+)
#Example
ServerEvents.basicCommand('icons', event => {
// Will print KubeJS icons from their characters, try `/icons BCDEFIJKNTWY`
event.server.tell(TextIcons.icon(event.input))
})
ServerEvents.basicCommand('heal', event => {
// Will heal the player
event.player.heal()
})