Results 1 to 9 of 9

Thread: PerfectNorth; Problem :s

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

    PerfectNorth; Problem :s

    When i use PerfectNorth; or MakeCompass('N') in my script it starts turning arround but after a while it stops not facing north :s.


    can somebody help me???

  2. #2
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yeah than your not useing srl dont ya?

    try to find a script that test you got srl 4 and that bug is because rs updated but if you use srl 4 its fixed
    ~Hermen

  3. #3
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Also JagSex screws around with the compass sometimes


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  4. #4
    Join Date
    Mar 2007
    Posts
    3,681
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by hy71194 View Post
    Also JagSex screws around with the compass sometimes
    Thats why he wants to make it perfect north...

    check out the Tutorial on how to install SRL 4

    here :

    http://www.srl-forums.com/forum/srl-...c-p195266.html

    if this problem persists post again

  5. #5
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yeah what hy says to but if you use srl4 it will be much less because srl 3.81 always do it so go to srl 4

    now!
    ~Hermen

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

    Default

    i also had this in past, it's because it doen't find the compass angle sometimes (don't know if it's fixed in SRL 4.0 BETA, i think so).
    When i had that, i logged out , logged in again and tried it again.
    [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]

  7. #7
    Join Date
    Jun 2007
    Location
    Canuckistan
    Posts
    306
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yeah, i was having the same problem with my script. I had makecompass('N') but it would go perfectly west for some reason.

  8. #8
    Join Date
    Aug 2007
    Location
    England
    Posts
    734
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I only have this problem with PerfectNorth; it spins round like 3 times and then stop facing the wrong way, but MakeCompass('n') works
    The truth finally came out...


  9. #9
    Join Date
    Apr 2007
    Posts
    379
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    mat run this script, and tell us what it says. It basically is testing if you installed SRL 4 right.

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

    var I, ScarVersionNumber:Integer;
    var SRLCurrent: String;

    procedure TypeWrite(Line: string; Between: integer);
     begin
       for I := 1 to length(Line) do
        begin
          cleardebug;
          WriteLn(copy(Line, 0, I));
          wait(Between);
        end;
     end;

    procedure WhatIsThis;
     Begin
       TypeWrite('This has been created to help you check your SCAR and SRL', 100);
       TypeWrite('Versions, After you Run this post this along with you problem', 100);
       TypeWrite('If you think it is SRL or SCAR internally related', 100);
     end;


    procedure PostSRLVer;
     begin
       ScarVersionNumber := GetSCARVersion;
       WriteLn('You have SRL : ' + (SRLVersionNumber));
       wait(1000);
       WriteLn('You have Scar : ' + IntToStr(ScarVersionNumber));
       wait(1000);
       WriteLn('');
       SRLCurrent := (SRLVersionNumber);
     end;

    procedure CorrectSRLVer;
     begin
       If Not (SRLCurrent = '4.00') Then
        Begin
          WriteLn('You do not have SRL 4.00. Copy the link into your address bar and');
          WriteLn('Follow instructions to download SRL 4.');
          WriteLn('http://www.villavu.com/forum/showthread.php?t=15536?t=17095');
          WriteLn('');
        end;
       If (SRLCurrent = '4.00') Then
        Begin
          WriteLn('You are up-to-date with SRL.');
          WriteLn('');
        end;
     end;

    procedure CorrectSCARVer;
     begin
       if not ScarVersionNumber = 311 then
        begin
          WriteLn('You need SCAR 3.11, look on the SRL Forums for a download Link.');
        end else
         begin
           WriteLn('You are up-to-date with SCAR');
        end;
    end;



    begin
     WhatIsThis;
     PostSRLVer;
     CorrectSRLVer;
     CorrectSCARVer;
    end.

    I think what is happening is SCAR isn't finding the runescape compass, just I thought it was fixed in SRL 4, which is why I wan't you to run that script.

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
  •