Results 1 to 3 of 3

Thread: Radial Walking Problems...

  1. #1
    Join Date
    Nov 2007
    Posts
    437
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Radial Walking Problems...

    PROBLEM SOLVED

    I am trying to walk out of east fally bank just a shortways out of the entrance onto the road. For some reason I cannot get it to work properly. I had at first this:

    SCAR Code:
    function WalkBackup: Boolean;
    begin
      if not LoggedIn then Exit;
      SetAngle(True);
      MakeCompass('N');
      Write('Using WalkBackup');
      FallyRoadColor := FindFallyRoadColor;
      if (RadialRoadWalk(FallyRoadColor, 42, -35, 26, 1, -1)) then
      begin
        Result := True
        FFlag(1);
      end else Result := False;

    But then for some reason having a negative in there totally screws it up and it picks a spot wayyy too far left. So then I tried to make it check positive one way, then postive the other way like this, but now it is just coming out false all the time.

    SCAR Code:
    function WalkBackup: Boolean;
    begin
      if not LoggedIn then Exit;
      SetAngle(True);
      MakeCompass('N');
      Write('Using WalkBackup');
      FallyRoadColor := FindFallyRoadColor;
      if (RadialRoadWalk(FallyRoadColor, 40, 0, 26, 1, -1)) then
      begin
        Result := True
        FFlag(1);
      end else
      begin
        if (RadialRoadWalk(FallyRoadColor, 360, 325, 26, 1, -1)) then
        begin
          Result := True
          FFlag(1);
        end else Result := False;
      end;
    end;

  2. #2
    Join Date
    Apr 2007
    Posts
    994
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    radialwalk({color},402,325,26,1,-1)
    [QUOTE]<GoF`> oh no its Raymooond
    <Raymooond> Heya
    <GoF`> is it ray or some other ray?
    <LeeLokHin> No idea
    <LeeLokHin> Raymond, what's the game you like the most?
    <Raymooond> Runescape
    <-- LeeLokHin has kicked Raymooond from #srl (Faker.)[/QUOTE]

  3. #3
    Join Date
    Nov 2007
    Posts
    437
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Omg I never thought of that, crap, thank you .
    Rep++

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Need Help On Radial Walking
    By willie.long in forum OSR Help
    Replies: 7
    Last Post: 09-05-2007, 02:16 AM
  2. Radial Walking Help !
    By Da Der Der in forum OSR Help
    Replies: 6
    Last Post: 07-25-2007, 09:24 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
  •