I'm having a bit of trouble with the compass program. I have it set to align to north, but every time the script runs, it is at a different angle. Is there a way to align the compass to the same angle every time?
I'm still learning my basics, but here is what I have so far:
SCAR Code:
program compass;
{.include SRL/SRL.scar}
begin
Wait(4000)
SetupSRL;
Makecompass('w')
Wait(1000)
MakeCompass('n');
Wait(1000)
MoveMouseSmooth(610,155)
Wait(1000)
ClickMouse(610,155, True)
MoveMouseSmooth(628,155)
Wait(10000)
ClickMouse(628,155, True)
MoveMouseSmooth(628,155)
Wait(10000)
ClickMouse(628,155, True)
MoveMouseSmooth(628,155)
Wait(10000)
ClickMouse(628,155, True)
MoveMouseSmooth(628,155)
Wait(10000)
ClickMouse(628,155, True)
MoveMouseSmooth(628,155)
Wait(10000)
ClickMouse(628,155, True)
MoveMouseSmooth(628,155)
Wait(10000)
ClickMouse(628,155, True)
MoveMouseSmooth(628,155)
Wait(10000)
ClickMouse(628,155, True)
MoveMouseSmooth(628,155)
Wait(10000)
ClickMouse(628,155, True)
MoveMouseSmooth(628,155)
Wait(10000)
ClickMouse(660,146, True)
MoveMouseSmooth(619,115)
Wait(15000)
ClickMouse(619,115, True)
end.
It's suppose to take me from the Falador bank to the food shop in Port Sarim. But because of that 1-4° shift, It takes me to the general area, between the mining spot south of falador and the crafting guild to the port sarim docks. It's one or two extra click to fix this, but I'd like to get this walking script down so it works the same way everytime.