Results 1 to 4 of 4

Thread: Walking trouble

  1. #1
    Join Date
    Dec 2006
    Location
    Australia
    Posts
    698
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default Walking trouble

    Im having trouble making a walk from varrock to barbarian village. Why is this not working?

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

    var
    toll : integer;

    const slaughter = 1000;

    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;

      Players[0].Name := '';
      Players[0].Pass := '';
      Players[0].Nick := ''; {3-4 letters of your name}
      Players[0].Skill := 'hitpoints'; {Lamp Skill}
      Players[0].Active := True; {Use player?}
    end;

    procedure FromBank;
    begin
        RadialRoadWalk(5855584, 225, 245, 60, 1, 1);
        FFlag(5);
        RadialRoadWalk(5855584, 205, 230, 60, 1, 1);
        FFlag(5);
        RadialRoadWalk(5855584, 275, 260, 60, 1, 1);
        FFlag(5);
        RadialRoadWalk(5855584, 250, 270, 60, 1, 1);
        FFlag(5);
        RadialRoadWalk(3097942, 285, 300, 60, 1, 1);
    end;

    Procedure SetupScript;
    begin
     DeclarePlayers;
     ActivateClient;
     ClearDebug;
     ClearReport;
     toll :=  0;
    end;

    begin
    SetupSRL;
    SetupScript;
     repeat{Kill, bank}
     if (not(LoggedIn)) then LoginPlayer;
     FromBank;
     until(toll >= slaughter)
    end.

  2. #2
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    What's it do?

    Just not walk right?

    Try using RoadColor (or w/e the command is) for the road color (findroadcolor, maybe?)
    Interested in C# and Electrical Engineering? This might interest you.

  3. #3
    Join Date
    Dec 2006
    Location
    Australia
    Posts
    698
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Its not clicking or moving at all. It just stands there and does nothing

  4. #4
    Join Date
    Feb 2007
    Location
    Het ademt zwaar en moedeloos vannacht.
    Posts
    7,211
    Mentioned
    26 Post(s)
    Quoted
    72 Post(s)

    Default

    The colors change everytime you log in so you can't rely on colors...
    However, there are some autocolor procedures in core/autocolor.scar, maybe you can use some of them.
    I made a new script, check it out!.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Trouble with Walking Procedures...
    By Claymore in forum OSR Help
    Replies: 6
    Last Post: 07-27-2008, 04:21 AM
  2. radial map walking trouble
    By tomdavies in forum OSR Help
    Replies: 7
    Last Post: 11-02-2007, 04:28 PM
  3. trouble!
    By s1cky in forum OSR Help
    Replies: 1
    Last Post: 10-08-2007, 12:47 AM
  4. having a bit of trouble
    By XcanadamanX in forum OSR Help
    Replies: 14
    Last Post: 01-30-2007, 10:00 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
  •