SCAR Code:
program New;
{.include SRL/SRL.scar}
Procedure AntiBan; //Make this better I'm lazy
begin
case Random(155) of
1..100: SleepAndMoveMouse(5000);
101..110:
begin
HoverSkill('Strength', False);
Wait(1000+random(1000));
end;
111..120: RandomRClick;
126..155:
begin
RandomMovement;
wait(500+random(2000));
end;
end;
end;
var Timer, TotalTime: Integer;
{------------------------------------}
const SetTime = 15; // In Minutes! }
{------------------------------------}
begin
SetupSRL;
MarkTime(Timer);
MarkTime(TotalTime);
repeat
if (TimeFromMark(Timer) > 60000*(RandomRange(3,4))) then
begin
AntiBan;
MarkTime(Timer);
end;
until (TimeFromMark(TotalTime) >= (SetTime div 60000));
end.
haha i dunno if it'll work i did it in about 30 seconds. The antiban is retardedly bad I was just too lazy to do anything worthwhile haha so edit it as you please.