Results 1 to 15 of 15

Thread: :( what have i done wrong? (v1.0 lol)walking help

  1. #1
    Join Date
    Aug 2007
    Location
    Vancouver
    Posts
    394
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default :( what have i done wrong? (v1.0 lol)walking help

    SCAR Code:
    procedure WalkToTree;
    begin
      RoadColor := FindRoadColor;
      RadialRoadWalk(FindRoadColor, 329, 325, 61, 1, 1);
      Flag;
    end;

    It wont click for me while using radial walk =S, im trying to work on my yew cutter and i need to walk to the tree now.
    also reason for v1.0 in title is because im asking lots of questions quiet recently lol

  2. #2
    Join Date
    Oct 2006
    Posts
    1,071
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Do your start and end Radials (329,325) encompass the road? Because it's betweeen those degrees (329,325) that it looks for the road.

    Which road are you trying to walk on? And if you aren't, try using Yakman's Radialwalking Aid

  3. #3
    Join Date
    Nov 2006
    Location
    In an Amish Paradise
    Posts
    729
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I think this will help

    Like the Rs map, These would go for mods (I hope I'm right with the numbers if not just tell me)
    SCAR Code:
    -1,1|0,1|1,1
    -1,0|0,0|1,0
    -1,-1|0,-1|1,-1

    Also try a bigger scan like RadialRoadWalk(RoadColor, 340, 310, 61, -1, 1); and manually put in the color till you know how the auto color works or you make your own

    Hope this helps,
    ~Stupedspam

  4. #4
    Join Date
    Aug 2007
    Location
    Vancouver
    Posts
    394
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I dont really want to put the colors in since runescapes colors are always changing =/
    Edit: damnit this is frustrating xD, btw i am using the radial aid

  5. #5
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    wow you use a TINY area to search in. i use like 100 degrees, the smallest i use is about 30 between start and end radial.

  6. #6
    Join Date
    Jan 2007
    Location
    Illinois.. >.<
    Posts
    1,158
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I used to have this problem, and the solution is soooo simple. Make sure that SCAR isn't covering any of the RS screen, especially the report abuse button, because that is what SRL uses to detect if we are logged in. Cause if you look in the coding for RadialRoadWalk:
    SCAR Code:
    function RadialRoadWalk(TheColor: Integer; StartRadial, EndRadial: Integer;
      Radius: Integer; Xmod, Ymod: Integer): Boolean; // By Wizzup? and WT-Fakawi.
    var
      i, X1, Y1, x, y: Integer;
    begin
      if (RoadColorChecker) then
        if (DebugRadialRoad) then
          WriteLn(' THROUGH RADIALROADWALK=  ---> ' + IntToStr(RoadColor));
      if (StartRadial = EndRadial) then
      begin
        WriteLn('Using LinearRoadWalk, equal values.')
          if LinearRoadWalk(TheColor, StartRadial, Radius, Xmod, Ymod) then
          Result := True;
      end
      else if (StartRadial < EndRadial) then
      begin
        repeat
          for i := StartRadial to EndRadial do
          begin
            x1 := Round(Radius * Sine(i)) + 646;
            y1 := Round(-Radius * Cose(i)) + 84;
            if Not LoggedIn then Exit;
            if (FindColor(x, y, TheColor, X1, Y1, X1 + 1, Y1 + 1)) then
            begin
              MouseFindNoFlag(X,Y,Xmod,Ymod);
              Result := True;
              CountFlag(10);
              Exit;
            end;
          end;
          Radius := Radius - 4;
        until (Radius <= 1);
      end else
        if (StartRadial > EndRadial) then
        begin
          repeat
            for i := StartRadial downto EndRadial do
            begin
              x1 := Round(Radius * Sine(i)) + 646;
              y1 := Round(-Radius * Cose(i)) + 84;
              if Not LoggedIn then Exit;
              if (FindColor(x, y, TheColor, X1, Y1, X1 + 1, Y1 + 1)) then
              begin
                MouseFindNoFlag(X,Y,Xmod,Ymod);
                Result := True;
                CountFlag(10);
                Exit;
              end;
            end;
            Radius := Radius - 4;
          until (Radius <= 1);
        end
    end;

    There is :
    SCAR Code:
    If Not LoggedIn Then Exit;

  7. #7
    Join Date
    Aug 2007
    Location
    Vancouver
    Posts
    394
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    umm i ALWAYS have scar in the lowest left corner so thats not the problem

  8. #8
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    aaannnnddd make sure the color is in the area you put in.

  9. #9
    Join Date
    Aug 2007
    Location
    Vancouver
    Posts
    394
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    yes im doing that....gah this sucks now i cant work out my yew cutter =(

  10. #10
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    so you changed 329, 325? to something with a greater difference between them?

  11. #11
    Join Date
    Aug 2007
    Location
    Vancouver
    Posts
    394
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    seems to be working now, thanks for all your help guys!

  12. #12
    Join Date
    Jun 2007
    Location
    Minnesota
    Posts
    773
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Also isn't there a FindVarrockRoadColor?

  13. #13
    Join Date
    Aug 2007
    Location
    Vancouver
    Posts
    394
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    theirs a findvarrockwest or something like that

  14. #14
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    i want to add something about RRW
    You never can find the perfect radials in one try, you have to "play" with them to find out what's the best, also test them at singe place.
    For example, from Bank to...., try to make your radials so you it works when you are at all the different ban booths, not only the one were you tested it
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  15. #15
    Join Date
    Jul 2007
    Posts
    104
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Can some one please explain Radial walking a little better I understand the guides and how to make them but I am not completely sure how to use it what I understand is you use a starting Radial and and ending radial and a radius then you set a color and what radial walking does it it looks through the Pie you created and when it finds it it clicks? Also what are the other two option you have the x and the y mod? Also how would you counter act the moving of the minimap that runescape does? Also How would you do it so someone could put their character anywhere in the bank and still be able to walk because wouldn't they have to be in an exact spot to walk the radial walk you set up. Sorry if this is unclear I am tying it really fast on the way out. So over all what I am trying to do is walk from Falador bank east to the mining guild. Thank you a head of time and if you help me out ++rep

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. What is wrong with this?
    By haxor62 in forum OSR Help
    Replies: 2
    Last Post: 11-08-2007, 09:53 PM
  2. Replies: 8
    Last Post: 03-23-2007, 04:20 PM

Posting Permissions

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