Keywords
Keywords Overview¶
and¶
Syntax: (statement) and (statement)
Description: The and keyword links statements together and if all statements are true the condition is met.
Example
1 2 3 | |
as¶
Syntax: (statement) as (variable)
Description: The as keyword works in conjunction with the findtype expression.
Example
1 2 3 4 | |
break¶
Syntax: break
Description: The break keyword terminate the closest enclosing loop such as a for loop.
Example
1 2 3 4 5 6 7 | |
continue¶
Syntax: continue
Description: The continue keyword passes control to the next iteration of the enclosing for or while loop which the keyword appears.
Example
1 2 3 4 5 6 7 8 9 10 11 | |
in¶
Syntax: (word) in (variable string)
Description: The in keyword works in conjunction with the getlabel command.
Example
1 2 3 4 5 6 7 8 | |
loop/replay¶
Syntax: loop OR replay
Description: The loop or replay keyword will restart the currently run script back to the beginning indefinitely.
Example
1 2 3 4 5 6 7 8 9 10 | |
not¶
Syntax: not (statement)
Description: They not keyword returns the opposite of the statement result.
Example
1 2 3 4 5 6 7 | |
1 2 3 | |
or¶
Syntax: (statement) or (statement)
Description: The or keyword links statements together and if one statements is true the condition is met.
Example
1 2 3 | |
stop¶
Syntax: stop
Description: The stop keyword will stop the execution of the current script.
Example
1 2 3 4 5 6 7 8 9 10 | |