this script i made refreshes your Chrome Browser page, realistically for as long as you want. Good for faking hits on websites, including youtube or soundcloud.
uses basic simba (no includes except basic SRL are required)
Just change the "movemouse" coords to the location you want to repeatedly click on the screen. Not recommended for Rs (no antiban)
____________________________________________________
program new;
{$i srl/srl.simba}
var
x,y: integer;
procedure tester;
begin
Wait(1000+Random(50));
MoveMouse(78, 58);
ClickMouse2(Mouse_Left);
Wait(3700+Random(150));
end;
begin
repeat tester;
until(false)
end.
uses basic simba (no includes except basic SRL are required)
Just change the "movemouse" coords to the location you want to repeatedly click on the screen. Not recommended for Rs (no antiban)
____________________________________________________
program new;
{$i srl/srl.simba}
var
x,y: integer;
procedure tester;
begin
Wait(1000+Random(50));
MoveMouse(78, 58);
ClickMouse2(Mouse_Left);
Wait(3700+Random(150));
end;
begin
repeat tester;
until(false)
end.