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???
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???
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
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!
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
yeah what hy says to but if you use srl4 it will be much less because srl 3.81 always do itso go to srl 4
now!
~Hermen
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]
Yeah, i was having the same problem with my script. I had makecompass('N') but it would go perfectly west for some reason.
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...
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.
There are currently 1 users browsing this thread. (0 members and 1 guests)