Command: If

Executes a command if a condition is true. A condition can be a mathematical expression that uses variables and string functions.
Usage:
#if (condition) {commands}
Examples:
#if (mana < 100) {quaff green potion;sleep}
#if (strcmp(target,"vampire") == 0) {flee}
See Also: Else, ElseIf, While, Set, Expressions, String Functions