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}See Also: Else, ElseIf, While, Set, Expressions, String Functions
#if (strcmp(target,"vampire") == 0) {flee}