Could someone just make a simple script that goes right click left click forever with a 10 second break BEFORE the clicking starts? Thanks!
err do you mean like
SCAR Code:program new;
{.include srl/srl.scar}
begin
wait(10000);
repeat
mouse(100, 100, 0, 0, false);
wait(10);
mouse(100, 100, 0, 0, true);
until(false);
end.
I don't really see where that will get you
SCAR Code:program New;
var
cX, cY: Integer;
begin
Sleep(10000); //10 second break. 10 * 1000 = 10000 (milliseconds)
GetMousePos(cX, cY); //Get the current mouse position and store it in cX and cY
repeat //Start a loop
ClickMouse(cX, cY, False); //Right Click the mouse at cX and cY
Sleep(10); //Wait 10 milliseconds
ClickMouse(cX, cY, True); //Left Click the mouse at cX and cY.
Sleep(10); //Wait 10 milliseconds
Until(IsFKeyDown(2)); //Specifies that to stop this script you have to press F2.
end.
NOTE: Don't use for Runescape unless you want to get banned. If you want it to be used to RuneScape, just let me know![]()
You may contact me with any concerns you have.
Are you a victim of harassment? Please notify me or any other staff member.
| SRL Community Rules | SRL Live Help & Chat | Setting up Simba | F.A.Q's |
There are currently 1 users browsing this thread. (0 members and 1 guests)