Just in case anyone reads this because they are trying to stop a lengthy looping script causing issues, here is sample code which can be used as the basis for such a script:
myalias 1
alias myalias {
; do stuff
var %i $1 + 1
if (%i <= 10000) .timer 1 0 myalias %i
}
P.S. If you find you need to add a small delay between loops then ".timer -m 1 10" is an alternative.