Log in

View Full Version : [SRL5] MakeCompass not functioning



Freakbrothers
01-03-2012, 05:11 PM
Using this basic procedure:


Procedure Bank;
Begin
MakeCompass('N');
OpenBankFast(Bank_VE);
End;


The method MakeCompass' doesn't function at all, although if I click the compass to North it will execute the 'openBankFast'.

Any fixes or ideas of why it does this,

~ Thanks, Freakbrothers.

Mat
01-03-2012, 05:17 PM
Didn't it change for SRL 5?

Freakbrothers
01-03-2012, 05:39 PM
It's still in the API as far as I can tell.

RyGuy
01-03-2012, 06:20 PM
I have had an issue with this when i was not using smart. If you are using runescape in the browser, and the first thing you tell it to do is move the compass, the browser will not be selected and the screen will not rotate. have it click somewhere on the screen and then rotate north and see if it works.

Freakbrothers
01-03-2012, 09:43 PM
It's fine now, but I understand your fix. Thanks but I just used ClickNorth(False); instead.

Yanhua
01-03-2012, 09:51 PM
SetAngle(SRL_ANGLE_HIGH);
ClickNorth(SRL_ANGLE_NONE); // SRL_ANGLE_NONE will negate the 1-2s wait in SetAngle
SetAngle(SRL_ANGLE_LOW);