If you haven't figured it out this might help, its taken from my woodcutting script. It either right clicks or left clicks.
SCAR Code:
Case random(2) of
0 : begin
FindEnt(x,y, True);
if IsUpText('hop') then
begin
Mouse(x, y, 2, 2, False);
Wait(300 + Random(243));
ChooseOption('hop');
Wait(5000 + Random(1854));
RandomGameTab;
FindNormalRandoms;
FindBirdsNest;
if FindObjTPA(x, y, 6391421, 10, 20, 10, 10, 1,['hop','illow'])then
Mouse(x, y, 2, 2, True);
end;
end;
1 : begin
FindEnt(x,y, True);
if IsUpText('hop') then
begin
Mouse(x, y, 2, 2, True);
Wait(300 + Random(243));
ChooseOption('hop');
RandomGameTab;
FindNormalRandoms;
FindBirdsNest;
Wait(5000 + Random(1976));
end;
end;
end;