Simple

A simple function is used to execute one or more actions (do).

function:
  do: giveItem diamond
# Or with multiple actions
function:
  do:
    - giveItem diamond
    - chatMessage <Hello, have a diamond>

Last updated