Denizen Script Commands


Commands are always written with a '-' before them, and are the core component of any script, the primary way to cause things to happen.
Learn about how commands work in The Beginner's Guide.


Showing 1 out of 183 commands...
NameGoto
Syntaxgoto [<name>]
Short DescriptionJump forward to a location marked by Command:mark.
Full DescriptionJumps forward to a marked location in the script.
For example:

- goto potato
- narrate "This will never show"
- mark potato


Most scripters should never use this. This is only for certain special cases.
Related TagsNone
Usage Example
#Use to jump forward to a location.
- goto potato
Groupqueue
Sourcehttps://github.com/DenizenScript/Denizen-Core/blob/master/src/main/java/com/denizenscript/denizencore/scripts/commands/queue/GotoCommand.java#L24