List of Resources

See MKB through human eyes
Filter by Type:
All Action Event Iterator Parameter REPL Command Variable
Filter by Category:
All Calculations Control Flow Equipped Armor Equipped Tool GUI Input Looking at Mod related Player Position Server Settings Time and Date Variables World

Filtros ativos: Tipo: "Action"

ACHIEVEMENTGET
Action

Displays an "Advancement made!" popup you get when completing an advancement with a custom message and optionally a custom item. The successor is [TOAST](/docs/actions/toast) with the option to create other types of popups.

Category: GUI
ARRAYSIZE
Action

Stores the size of the specified `<array[]>` in `[#outvar]`. Returns the size of the array.

Category: Variables
ASSIGN
Action

Internal function

Category: Control Flow
BIND
Action

Set the specified key binding to the specified key code

Category: Settings
BINDGUI
Action

Binds the specified custom screen to the slot specified

Category: Mod related
BREAK
Action

Interrupts exection of the innermost loop. Can be used with: * `DO;LOOP` * `DO;UNTIL` * `DO;WHILE` * `FOR;NEXT` * `FOREACH;NEXT`

Category: Control Flow
CALCYAWTO
Action

Calculates the absolute yaw angle and optionally the distance to the specified coordinates. Returns the calculated yaw value.

Category: Calculations
CAMERA
Action

Set the current camera mode, call with no arguments to toggle modes Can be one of the following values: * `0` for first person view * `1` for third person view, from behind * `2` for third person view, from the front

Category: Settings
CHATFILTER
Action

Enable or disable the chat filter

Category: Mod related
CHATHEIGHT
Action

Set height of the Minecraft chat whilst ingame. `<value>` has to be between `20` and `180`.

Category: Settings
CHATHEIGHTFOCUSED
Action

Set height of the Minecraft chat whilst in the chat GUI. `<value>` has to be between `20` and `180`.

Category: Settings
CHATOPACITY
Action

Set opacity of the Minecraft chat. `<value>` has to be between `10` and `100`.

Category: Settings
CHATSCALE
Action

Set scale of the Minecraft chat. `<value>` has to be between `0` and `100`.

Category: Settings
CHATVISIBLE
Action

Set visibility of minecraft chat. By default it toggles between Shown and Hidden. Can be one of the following values: * `"show"` or `0` for __Shown__ * `"commands"` or `1` for __Commands Only__ * `"hidden"` or `2` for __Hiddenn__ Returns the new visibility state.

Category: Settings
CHATWIDTH
Action

Set width of the Minecraft chat. `<value>` has to be between `40` and `320`.

Category: Settings
CLEARCHAT
Action

Clears all messages from the chat window

Category: GUI
CLEARCRAFTING
Action

Cancels any queued crafting jobs

Category: GUI
CONFIG
Action

Switch to the specified configuration

Category: Mod related
CRAFT
Action

Queues an auto-crafting request

Category: GUI
CRAFTANDWAIT
Action

Queues an auto-crafting request and waits for it to complete

Category: GUI
DEC
Action

Decrements the specified counter by 1 or by the specified amount

Category: Variables
DECODE
Action

Converts an string from base64 back to an normal string. Returns the decoded string.

Category: Calculations
DISCONNECT
Action

Disconnects from the current game or server

Category: World
DO
Action

Begins a loop. Needs to be closed with `LOOP,` `WHILE`, or `UNTIL`. The loop can be exited early by using `BREAK`. It is possible to specify a `[count]` number for it to have a maximum amount of loops. If this number is not specified, it will loop indefinitely.

Category: Control Flow
ECHO
Action

Sends the specified message to the server

Category: Input