1: Drag the client onto the runescape screen
2: use the color picker on the 2 spots to get the coordinates
3: Put the first coordinate in the first Mouse, and the second coordinates in the second mouse:
SCAR Code:
program Whatever;
{.include SRL/SRL.scar}
procedure ClickTheStuff;
begin
Mouse(coords,coords,2,2,true); //First set of coordinates where coords are
wait(250+random(500));
Mouse(coordsB,CoordsB,2,2,true); //same as above except use other coords
wait(250+random(500));
end;
begin
repeat
ClickStuff;
until(IsFKeyDown(3));
end.
So all you need to do to stop it is just hold down the f 3 key
Just fill in the coords with the coordinates you pick with the color picker on where the items are..
Try to pick near the middle of the item!