Skip to content

1.1.0

Choose a tag to compare

@Alumopper Alumopper released this 22 Jul 03:57
· 51 commits to master since this release

Version 1.1.0

New Features

Get Function Stack

Use the /breakpoint stack command to get the current function call stack in the game.
Example:

#test:test1
say 1
function test:test2
say 2

#test:test2
say A
#breakpoint
say B

At the breakpoint, executing /breakpoint stack will output:

test:test2
test:test

Run Command in Current Context

Use /breakpoint run <command> to run any command in the current context, similar to execute ... run ....