Hello,
I'm new to scar, and have been reading up a lot of tutorials lately.
I get how the basics work, but just don't have enough knowledge to write my own script.
So, I have taken to trying to edit or change other peoples scripts to make them better.
However I cannot find anywhere how to put the ready made anti-random script into another script.
(C:\Program Files\SCAR 3.15\Includes\SRL\SRL\core\AntiRandoms\AntiRandoms .scar)
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.