Can be simplified with a for loop but that may be too complicated for u at this point. Read more tutorials/videos will help u start off more easily.
Simba Code:
program new;
{$I SRL/SRL.Simba}
procedure OneRound(x,y: integer);
begin
MMouse(x,y,0,0); //move the mouse to x,y
ClickMouse2(true); //click once
Wait(); //input how many second u need to wait
ClickMouse2(true); //click 2nd time)
end;
procedure MoveNext;
begin
OneRound(121,121); //change 121,121 to the actual coordinate;
OneRound(232,212); //the next point
OneRound(352,231); //3rd point
//and so on depending on how many circles u are clickin before restarting
end;
begin
SetupSRL;
repeat
MoveNext;
until(false);
end.