Just wondering, why does it have to be red light coming out of the altar? Oh and I am gonna stick with radial to walk I think but to enter, craft and exit the altar I am gonna try something like that, thank you.
Oh and I am spending a bit of time also working on a script for buying silk and selling it in... well I forget the name of where you sell it but I am working on that and RadialWalk is working somewhat for me now. I think basically have it down now
Just need to figure out how to make it enter the altar, craft and exit the altar and for the silk script, how to find the guy because he is walking around...
I am back to using 3 pixel width for radialwalk because the wider one got lost easily, so now my next issue is, I am not sure what to fill in for thecolor for the road outside of Falador, I tried simply FindRoadColor but it wouldn't then place a flag...
SCAR Code:
program AirCrafter;
{.include SRL/SRL.scar}
procedure Fally;
begin
MakeCompass('n');
RadialRoadWalk(FindFallyRoadColor, 193, 195, 54, 1, 1);
RadialRoadWalk(FindFallyRoadColor, 197, 199, 65, 1, 1);
RadialRoadWalk(FindRoadColor, 177, 179, 60, 1, 1);
end;
begin
SetupSRL;
ActivateClient;
Fally;
end.
Can anyone explain to me how I can make it search for the west yew symbol south of Falador and make it place a flag on or near it, I have never read about the usage of a function like that.