if
From QuestWiki
if (boolean expression) { script } [ else if ... ]* [ else { script } ]
Conditionally runs script.
The syntax for negation is if (not expression) { script }
| < Back to Script Commands |