1:
put polish assembly
pause
shift
if_1 goto 2
2:
move se
move n
put polish assembly
pause
shift
if_1 goto 3
3:
move s
move ne
put polish assembly
pause
shift
if_1 goto 4
4:
move sw
move se
put polish assembly
pause
shift
if_1 goto 5
5:
move nw
move s
put polish assembly
pause
shift
if_1 goto 6
6:
move n
move sw
put polish assembly
pause
shift
if_1 goto again
again:
move ne
move nw
goto 1
This is a simple script i've written for polishing lens assemblies during Alchemy tasks. It should allow me to add a variable for each rep, and quit when all the variables have been used. So if I wrote .polish 1 1 1 1 1 1, that should polish six assemblies and then quit. But when running the script it never quits, it just loops continually.