Simba Code:
program myLoop;
var
withDrawEss: TBox;
begin
repeat
withDrawEss := intToBox(269, 141, 287, 152);
mouseBox(withDrawEss , MOUSE_RIGHT);
Wait(500);
mouseBox(intToBox(170, 203, 368, 220), MOUSE_LEFT);
mouseBox(intToBox(482, 30, 494, 40), MOUSE_LEFT);
Wait(500);
mouseBox(intToBox(335, 160, 390, 196), MOUSE_LEFT);
Wait(1000);
mouseBox(intToBox(330, 183, 370, 221), MOUSE_LEFT);
Wait(1000);
mouseBox(intToBox(223, 138, 245, 158), MOUSE_LEFT);
Wait(1000);
mouseBox(intToBox(428, 301, 455, 318), MOUSE_LEFT);
until (somethingHappensThatMakesUsStop); //"until false" -> will run forever
end.