would this work if I want it to continue until the right option in the options box is found, and then choose that option. It will also set the camera east and at the highest point. Also, will it do the same thing if i just set turns higher? In addition, The text is uptext right?, cuz in my text, i have pult one as 'alk to' to assure the object is an NPC (that text is white not yellow)
SCAR Code:
procedure BoatRide;
begin
repeat
FindObjMulti(x, y, 'onk of', 'ntrana', 'alk to', 1717584, 1452606, 3301515, 7, 1, True, True);
mouse(x, y, 0, 0, False);
ChooseOptionEx('ake-boat');
until ChooseOptionEx('ake-boat')=True;
wait(8000+ random(1000));//wait while boat gets there
MakeCompass('e');{ this parts makes assures the correct camera angle for next procedure(getting off boat)}
KeyDown(38);
Sleep(1000 + Random(100) + Random(200));
KeyUp(38);
Wait(500 + Random(100));
end;