program script;
begin
ClickMouse(233, 423, True);
ClickMouse(261, 416, True);
ClickMouse(219, 649, True);
end.
how can i get this to repeat every 1 second
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
program script;
begin
ClickMouse(233, 423, True);
ClickMouse(261, 416, True);
ClickMouse(219, 649, True);
end.
how can i get this to repeat every 1 second
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
SCAR Code:program script;
begin
repeat
ClickMouse(233, 423, True);
ClickMouse(261, 416, True);
ClickMouse(219, 649, True);
wait(1000);
until(isfkeydown(12)) //Press F12 to stop
end.
Slightly more advanced here:
SCAR Code:program script;
{.include SRL/SRL.scar}
begin
SetupSRL;
repeat
Mouse(233, 423, 4, 4, True);
Mouse(261, 416, 4, 4, True);
Mouse(219, 649, 4, 4, True);
wait(1000 + random(500));
until(isfkeydown(12)) //Press F12 to stop
end.
Interested in C# and Electrical Engineering? This might interest you.
ty its not for runescape its jus for an online game
There are currently 1 users browsing this thread. (0 members and 1 guests)