PERFORMANCE
Where contextvariable indicates which NOTES.INI ContextIteration variable to reference for an @IF test.
The NOTES.INI is read for a "ContextIterationX" value, where X is a positive number. This is used in conjunction with an @if test that should follow it. There can be a MAXIMUM of 10 ContextIteration variables. In the example below @IF [@1] will check if this iteration is a multiple of what was listed in the ini (ContextIteration1=12 for ex., so every 12th iteration) and if true then it is time to do this operation, then the code from here to the first @ENDIF encountered will be executed. For example:
@if[@1]
pause 30 sec
@endif
SetContextStatus sets that value as an iteration value to check. In this case then, every 10th iteration of the script this @if will be true and the pause will be executed.
This is to get around a single nthiteration variable (different commands need different intervals at which to be executed).
See also