Moderator: MacroQuest Developers


Code: Select all
/for I 1 to 0
. . . this code gets executed once with I = 1 . . .
/next I
Code: Select all
:loop
/if (Whatever) {
/goto :endloop
}
. . . some code . . .
/goto :loop
:endloop
Code: Select all
/if (whatever) {
/for
/do stuff
/next
}