The script atm:
SCAR Code:
Var
x, y, i: integer;
begin
Repeat
Mousespeed := 15
DropAll;
Repeat
LoadRockRecords;
FindObjRock(x, y, Varrock_iron);
ClickMouse(x, y, True);
Wait(10000);
Until (InvFull= True);
i = i + 1
Until (i = 1)
end.
How do i get the below anti-random into the script?
SCAR Code:
procedure AntiRandoms;
begin
if not LoggedIn then Exit;
FindNormalRandoms;
if FindFight then // if it finds a fight then it will(next time)
SetRun(true); // true means yes, so it will turn on run if it finds a fight
RunAway('E', True, 1, 5000); // runs east and waits 5000 milliseconds
// and then comes back
end;
Do I paste into the anti-random actually into the script, put it underneath or what?
can someone show me how it should look?
(sorry for being a complete noob)