Conditional Effects

Section-heading conditionals.

The conditional branch headers are all technically 'effects' though they have no actual function other than to mark the start of their sections.

If

if %Boolean%
if 1 is 1
if true
if {var} is true

See here for more details about using this.

Else-If

else if %Boolean%
else if 1 is 1
else if true
else if {var} is true

See here for more details about using this.

Else

else

See here for more details about using this.

Last updated