Special Tags

Predefined decorators

Special tags are tags with built-in behavior. They are used to decorate statements to obtain specific plugin behaviors.

Once

This Special Tag can be used if you want a statement to play only once, doesn't matter how many times the script flow passes through that point.

Keep Visited Statements must be enabled in Quillscript Project Settings for this tag to work

Mark

The #mark tag is used to tell the Interpreter to store a counter of how many times this statement played when the Keep Visited Statements setting is turned off.

$ a = 10 | #mark

Last updated