Loops

Loops are the repetition of a part of a script several times. You can repeat the execution of the block a specified number of times, or repeat the block until a certain condition is true or false.

Autorun has two types of loops:

For...Next

While...Wend

:!: Attention! Don't create empty loops and long running loops without delay. This can lead to increased load on the processor.

:!: Be careful to use loops in the output section, as Total Commander won't close until the loop is complete.