Type=Chaser - Looping Task Type Command

The Type=Chaser command is a shortcut to creating looping tasks.
This type of task can be built using standard logic with other commands but this can be faster. It is not required to assign a task a "Type"

Type=Toggle and Type=OneShot are deprecated commands. They still compile but do not do anything. Use NewVector() in place of Type=Toggle.

Syntax

Type=Chaser
Tells the task to immediately restart when it finishes.

Example

Will run as a continuous chase sequence between preset 1 and preset 4.

Task1
{
Type=Chaser
Preset(P=1)
Delay(1)
Preset(P=4)
Delay(1)
}