Condition Keywords
Keywords that allow execution based on a condition.
If
if %check% %then%if 5 == 5 /print hello
result = true
if result {
/print hello
}
if "hello" == "hello" /print helloTrue
False
if "hello" /print ok
if 1 /print ok
if true /print okWhile
For
Last updated