Math

Commands:

    * math <variableToSet> = <value1> <operator> <value2>
    * math <variableToSet> <operator> <value1>
    * math <variableToSet> ++
    * math <variableToSet> -- 

Valid operators are + - * /



If

/if <value1> <operator> <value2> <cmdthen> (<cmdelse>)

Compares the first two values and executes <cmdthen> if true, <cmdelse> if false.

Valid operators are = != < > >= <=



Strcmp

strcmp <string1> <operator> <string2> <cmdthen> (<cmdelse>)

Compares the first two strings and executes <cmdthen> if true, <cmdelse> if false.

Comparison is case-sensitive.

Valid operators are = != 