for my script i need to get how to get into the falador cow pen, as i am making a falador south cow killer..i've got the walk from east bank all the way to around the tree near the cow pen, i need for it to click somewhere outside the pen near the gate, just in case the gate is closed, he could open it...here's what i have so far
SCAR Code:
program New;
{.include srl/srl.scar}
var
x,y: integer;
procedure ToPen;
begin
Makecompass('n');
radialwalk(findfallyroadcolor,180,240,30,1,1);
repeat
radialwalk(findfallyroadcolor,180,200,40,1,1);
wait(1000);
until(findsymbolin(x,y,'tree',628,8,704,165));
mouse(x + 10,y + 10,10,10,true);
end;
procedure ToBank;
begin
end;
begin
SetupSRL;
activateclient;
ToPen;
end.