Results 1 to 9 of 9

Thread: Need a little bit of on Radial Road Walking

  1. #1
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default Need a little bit of on Radial Road Walking

    ok I was trying to make a script using Radial Road Walking and Im pretty sure i set it up right but it wont click at all. It just says this:
    Code:
    Bank Symbol Color Is: 5824255
    THROUGH MINIMAP!!!!!!!!---> 65536
    RoadColor[1] = 65536
     THROUGH RADIALROADWALK=  ---> 65536
    But anyways why wont it click here is the procedure im using it in.
    SCAR Code:
    Procedure WalkToYew;
    begin
    BankSymbol := GetSymbolColor(x, y, 'bank');
    Writeln('Bank Symbol Color Is: '+IntToStr(BankSymbol));
    wait(1500+random(1500));
    RadialRoadWalk(myRoadColor,326,686,59,1,-1);
    wait(7500+random(2500));
    RadialRoadWalk(myRoadColor,358,718,69,1,-1);
    wait(7500+random(2500));
    RadialRoadWalk(myRoadColor,346,706,71,1,-1);
    wait(7500+random(2500));
    If(FindSymbol(x,y,'Rare Trees')) then
    Writeln('We Have Made It To The Yews');
    Mouse(x,y,5,5,True);
    If(Not(FindSymbol(x,y,'Rare Trees'))) then
    Writeln('I Got Lost');
    Players[CurrentPlayer].Loc:= 'Lost';
    Players[CurrentPlayer].Active:= False;
    LogOut;
    NextPlayer(True);
    end;
    At first I used flag; instead of wait but i changed it in hope it would work.

  2. #2
    Join Date
    Sep 2006
    Posts
    154
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmm... RadialRoadWalk confuses me too, but I think that it stores the road color into RoadColor[1], not myRoadColor. So just change:
    SCAR Code:
    RadialRoadWalk(myRoadColor,346,706,71,1,-1);
    to:
    SCAR Code:
    RadialRoadWalk(RoadColor,346,706,71,1,-1);
    And I think that should be good.

  3. #3
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Another thing I figured out what was wrong was that i set the radial walking points too far apart and it messes up, so I shortened then distance between the points and now its works excellent. Thank You for your help.

  4. #4
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    6,136
    Mentioned
    28 Post(s)
    Quoted
    17 Post(s)

    Default

    run this script SRL/script/Radial Walking Aid.scar says it all. Thanks Yakman
    SRL is a Library of routines made by the SRL community written for the Program Simba.
    We produce Scripts for the game Runescape.

  5. #5
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Yea thats what i been using. :P

  6. #6
    Join Date
    Feb 2007
    Location
    Toronto, Ontario, Canada
    Posts
    586
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sorry if this is considered a bump, but I thought it made the most sense to post in this thread:

    I know that RadialRoadWalk dynamically updates for subtle shifts in road colour, but what about places where the colour changes entirely, for example, north and south of falador...like THIS:


    Help?

  7. #7
    Join Date
    Sep 2006
    Location
    In Finland
    Posts
    124
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You could use this...

    RadialRoadWalk(FindRoadColor,0,90,70,0,0)

    It will find the new road color...i hope this helped...!

    EDIT:And buckley...can ya tell me where you need those waits ???

  8. #8
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    core/autocolor.scar
    FindFallyRoadColor

    Check out juiniors aircrafter

  9. #9
    Join Date
    Jul 2006
    Location
    NY
    Posts
    371
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Boreas View Post
    core/autocolor.scar
    FindFallyRoadColor

    Check out juiniors aircrafter
    wait until the new version comes out
    Couple of days hopefully.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Radial Get Road Color
    By YoHoJo in forum Research & Development Lounge
    Replies: 17
    Last Post: 12-24-2007, 03:29 PM
  2. Radial Road Walking in Falador
    By Jackrawl in forum OSR Help
    Replies: 24
    Last Post: 10-22-2007, 11:39 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •