Console Commands

Cheat Codes

qsc.Next

Go to next story node

qsc.Rollback

Go to previous story node

qsc.End

Terminate script play

qsc.Stop

Block script from proceeding to other statements

qsc.Restore

Unblock script to proceed to other statements

qsc.Play

Go to given story node by index.

Parameters
Index: positive integer. (0 if empty)
Example
qsc.Play 72
qsc.PlayByLabel

Play given story node by label.

Parameters
LabelName: string
Example
qsc.PlayByLabel MyLabelName
qsc.Var

Set the value of a variable.

Parameters
Name: string
LabelName: string
Example
qsc.Var counter 10
qsc.Del

Delete a variable.

Parameters
Variable: string
Example
qsc.Del counter
qsc.Eval

Evaluate a Quillscript expression.

Parameters
Expression: string
Example
qsc.Eval ( 10 + 2 ) * 5 / 2
qsc.BypassConditions

Ignore all conditions set by script.

qsc.NotBypassConditions

Stop ignoring conditions set by script.

qsc.Debug

Toggle Quillscript's debugger widget.

Last updated