Hey everyone, I havnt been on in a while but don't worry because I have not forgotten about you. I need some help with a script that should be so much simpler than I thought it would be. I want it to bump the rs forum thread once every 10 minutes but it only works for 1 click and then it freaks out and moves the mouse off the screen ( near my X button) and tries to click there instead of the bump thread button. Any advice please?
Oh btw sorry for no standards... Its a private script that I am too lazy to use them on, as it is not a long script at all.
SCAR Code:
program ForumClicker;
{.include SRL/SRL.Scar}
var
counter : integer;
procedure Siggy; Forward;
procedure DoThis;
begin
repeat
Mouse(822, 218,2,2,true)
Wait(6600 +random(400)); //I will change to 10 mins once I get it to work.
counter := counter +1;
Siggy;
until(false);
end;
procedure Siggy;
begin
WriteLn('Clicked '+inttostr(counter)+ 'times');
end;
begin
SetupSrl;
ActivateClient;
DoThis;
Siggy;
end.