Скачать KeyboardJS — Minecraft Моды — ModStock
KeyboardJS

KeyboardJS

Активный

Установок

0

Последнее обновление

6 месяцев назад

Версии

1.20.1
Клиент и сервер
Forge
Игровые механики
Аддоны

Please do not install on your server!

Please do not install on your server!

Please do not install on your server!

This is a simplified mod that simplifies the keyboard operation of kubejs.

With this mod, you can monitor the operation of keys on the keyboard, including pressing and releasing.

Determine whether a key has been pressed or released by returning a Boolean value.

Pressed Event

ItemEvents.rightClicked("emerald",event=>{
    event.player.tell(Keyboard.pressed(Keys.F3))
})

Released Event

PlayerEvents.tick(event=>{
    event.player.tell(Keyboard.released(Keys.X))
})