Results 1 to 3 of 3

Thread: Make Compass?

  1. #1
    Join Date
    Nov 2009
    Location
    Seattle, WA
    Posts
    589
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Make Compass?

    Does make compass work? I mean, check out this script.

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

    Function WalkToRoad1 : Boolean;
    begin
      if not LoggedIn then Exit;
      SetRun(True);
      MakeCompass('w');
      if RadialWalk(FindRoadColor, 151, 141, 61, 1, 1) then
      begin
        Writeln('Found Road 1!');
        Result := True;
      end else
        Writeln('Could Not Find Road 1!');
    end;

    begin
    SetupSRL;
    ClearDebug;
    ActivateClient;
    if WalkToRoad1 then
     Writeln('Walked To Road 1')
    else
     Writeln('Did Not Walk to Road 1');
    end.

    It does not make the compass point west.

    Another Question, In Draynor, shouldn't the FindRoadColor (AutoColor Function) work for finding its road color? Thanks.

    EDIT: I <3 u Awkwardsaw. I really do.
    SCAR Code:
    MakeCompass('w');
    to
    SCAR Code:
    MakeCompass(270)
    worked great.
    And for the FindRoadColor Question, That worked too after getting the compass Adjusted thanks bro
    Last edited by Heavenguard; 12-02-2009 at 02:36 AM. Reason: Updated
    Don't Troll, Don't Fight, Just keep the Respect
    Status : Offline

    Feel free to re-make my scripts ;D
    Community Member

  2. #2
    Join Date
    May 2007
    Location
    knoxville
    Posts
    2,873
    Mentioned
    7 Post(s)
    Quoted
    70 Post(s)

    Default

    instead of using string, try using the degrees (270)

    makecompass(270);

    as far as the road color goes, idk it should work
    <TViYH> i had a dream about you again awkwardsaw
    Malachi 2:3

  3. #3
    Join Date
    Aug 2008
    Location
    Finland
    Posts
    2,851
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    Call
    SCAR Code:
    ActivateClient;
    Wait(1000);
    after SetupSRL;

Thread Information

Users Browsing this Thread

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

Posting Permissions

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