I am using RadialRoadWalk(FindFallyColor, and it keeps either moving a few inches, or going in the grass.
What am I doing wrong?
The distance thingdo is 51
I am using RadialRoadWalk(FindFallyColor, and it keeps either moving a few inches, or going in the grass.
What am I doing wrong?
The distance thingdo is 51
Its FindFallyRoadColor
Normally its easier to do..
SCAR Code:RoadColor:=FindFallyRoadColor;
RadialRoadWalk(RoadColor............)
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
Same difference, I just spelled it wrong here.
Not same difference, correctly spelling procedures/functions does INCREASINGLY help.
Then its just you doing it wrong lol, use the radial walking aid.
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
You are reading but you aren't understanding.
The problem is not a misspelling, it's that the roadwalk is not going where it should.
I AM using RadialRoadWalk(FindFallyRoadColor
it was just a misspelling.
I'm not saying thats the problem, im saying that your code is wrong.
We cant help unless you tell us where you want to move to, what compass direction are you using, where you are starting..
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
I am moving anywhere on the road south of falador, starting at the bank.
I know as a FACT that I am not doing anything wrong in the Radial Walking Aid.SCAR Code:program New;
{.include SRL/SRL.scar}
begin
SetUpSRL;
FindRS;
ActivateClient;
MakeCompass('N');
RadialRoadWalk(FindFallyRoadColor, 202, 198, 51, 0, 0);
wait(4000);
RadialRoadWalk(FindFallyRoadColor, 187, 179, 53, 0, 0);
end.
(I think the problem is in FindFallyRoadColor, because it is always returning the same color to me. Which is retarded, because in the first place it should click on the farthest pixel that is within Falador Roads's color range.)
Walked down to South Gate to guards. Stayed on road.SRL Compiled in 0 msec
Falador RoadColor = 4806499
Falador RoadColor = 4806499
Successfully executed
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
I don't know why it worked for you, but it returns me
and doesn't click the second time.SRL Compiled in 16 msec
Falador RoadColor = 5334639
Falador RoadColor = 5334639
Where is the 'FindFallyRoadColor' function at? I'm going to tweak it.
AutoColor.scar
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
If it's not walking the second time it means either the road color you're trying to walk to isn't Fally's road color or your radials and radius are off.
:-)
Neither.
Notice how it keeps returning the same color, and Faladors Road Color should not be constant. That would just look weird.
And yes, I know where Falador is - and I used the RRWA
Falador's road color is always constant if you get it more than once on the same login session.
:-)
Then why would it choose to walk to the closest pixel instead of the farthest pixel if it scans inward?
Can you post a picture of where you're trying to walk on the second one (if that's where you're having problems)? The problem might be that you're trying to find the Fally road color when you really should be looking for the normal road color or the dirt road color.
:-)
It works fine for me. If it is suppose to walk near the guards out of south fally.
Client setup right? Brightness etc? Low detail?
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
...what brightness are you supposed to use? That's probably why it's being a homosexual.
Very high brightness, low detail. 32 bit color on desktop
Not sure if its got anything to do with problem lol
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
Yeah, that was what it was screwing up over...
Thank you.
Cool, glad you got it sorted.![]()
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!

Just an fyi, it is better to do this:
SCAR Code:RoadColor := FindFallyRoadColor;
RadialRoadWalk(RoadColor, etc.)
RadialWalk updates the first variable for you when a loading screen comes, so there is no need to continously stick in FindFallyColor in RadialWalk![]()
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!

whoopsie![]()
or you could just do
(I had to do it.SCAR Code:RoadColor := FindFallyRoadColor;
RadialRoadWalk(RoadColor,start,ends,radius,xmod,ymod)
LOL)
Lol no offence meant Infinitry001.
+1 :O
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
There are currently 1 users browsing this thread. (0 members and 1 guests)