
Originally Posted by
Volture
I'm right next to a bank, and I'm thieving from a stall.. I want to thieve 28 times (1 time an item) and then bank...
For clicking on the stall i'm just clicking cordinates, but how would I make this click the stall 28 times? Thanks..
Program StallClicker;
begin
moveMouse(314, 216);
Sleep(30 + Random(100));
ClickMouse(314, 216, Mouse_left);
end.
Simba Code:
Program StallClicker;
var i:integer;
begin
for i:=1 to 28 do //repeats from 1 to 28 , thats 28 times actions after do, in this case between begin and end;
begin
moveMouse(314, 216);
Sleep(30 + Random(100));
ClickMouse(314, 216, Mouse_left);
wait(1000); // waits 1 seconds(1000ms) before clicking again i think should be some wait time added to allow it to thieve item.
end;
end.