Results 1 to 2 of 2

Thread: Need some help with walking...

  1. #1
    Join Date
    Sep 2007
    Location
    Pennsylvania
    Posts
    3,396
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Need some help with walking...

    Well I'm trying to get a script to walk from Varrock West bank to Barbarian Village. I'm just using this to test

    SCAR Code:
    program New;
    {.include SRL/SRL.scar}

     procedure walk;

     begin


      RadialRoadWalk(8160134, 260, 180, 65, 0, 1);
      writeln('walk success');
      wait(1000);
      FFlag(10);
      RadialRoadWalk(8160134, 260, 180, 65, 0, 1);
      writeln('walk success');
      wait(1000);
      FFlag(10);

    end;

    begin
    SetupSRL;
     FindRS;
     ActivateClient;
     walk;
    end.

    But it only clicks moves once and tells me 'walk success' even though it never does the second walk. Am I doing something wrong with FFlag or...?

  2. #2
    Join Date
    Apr 2007
    Location
    Perth, Australia
    Posts
    3,926
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    SCAR Code:
    if RadialRoadWalk(8160134, 260, 180, 65, 0, 1) then
      begin
        writeln('walk success');
        wait(1000);
        FFlag(10);
      end;
      if RadialRoadWalk(8160134, 260, 180, 65, 0, 1) then
      begin
        writeln('walk success');
        wait(1000);
        FFlag(10);
      end;

    Also, Try using FindVarrockRoadColor when in Varrock and FindRoadColor when near Barbarian village instead of the colour you've got. These function automatically find the current Varrock Road colour and the normal Road colour.

    And another thing. RadialRoadWalk already has FFlag so you don't need to call it again.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. walking help?
    By Rubix in forum OSR Help
    Replies: 0
    Last Post: 07-15-2008, 02:35 AM
  2. Walking
    By imskate182 in forum OSR Help
    Replies: 4
    Last Post: 12-20-2007, 05:18 AM
  3. Map walking
    By boberman in forum OSR Help
    Replies: 1
    Last Post: 12-06-2007, 12:48 AM
  4. help with walking
    By Jake_453 in forum OSR Help
    Replies: 7
    Last Post: 05-15-2007, 12:49 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
  •