I need a script that rotates the runescape window every 4 minutes
I need a script that rotates the runescape window every 4 minutes
RotateEvery(4+random(1));
i think thats right
SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
Programming Projects: NotePad | Tetris | Chess
Try this:
SCAR Code:program MapRotate;
{.include SRL\SRL.scar}
var
i, t, a, tMinutes: Integer;
begin
SetupSRL;
try
tMinutes:= StrToInt(Readln('How many minutes to run?'));
except
Writeln('Please input only numbers.');
end;
repeat
i:= Random(3)
case i of
0: MakeCompass('N');
1: MakeCompass('E');
2: MakeCompass('S');
3: MakeCompass('W');
end;
Inc(t);
MarkTime(a);
repeat
Wait(500);
until(TimeFromMark(a) >= 240000)
if ((t / 4) >= tMinutes) then
Exit;
until(t = tMinutes);
end.
When it starts it asks for minutes, then ever 4 minutes it rotates the map randomly.
There are currently 1 users browsing this thread. (0 members and 1 guests)