Page 1 of 1

unstuck teleport....

Posted: Mon Apr 16, 2012 10:35 am
by iceer
Idont know how to solve my Problem....
i sometimes get more than 10 unstuck events... for now i have to press entf. if i dont do bot wont do anything...
but i want that my bot Teleports to waypoint 1 if that happens...
Anyone knoes how to?

Re: unstuck teleport....

Posted: Tue Apr 17, 2012 4:14 am
by lisa
iceer wrote: Teleports to waypoint 1
Do you mean uses the transport rune to go to the first place in your transport book thingy??

Code: Select all

function unStick9()
RoMScript("TB_Teleport(0,1)") --teleports to slot 1 in teleport book
waitForLoadingScreen();
loadPaths("1"); -- loads WP file 1.xml
end

Re: unstuck teleport....

Posted: Sat Apr 21, 2012 7:18 am
by iceer
Nope
i think about teleporting to first waypoint in waypont file....
with teleport hack

Re: unstuck teleport....

Posted: Sat Apr 21, 2012 9:42 am
by rock5
For that to work, all possible places it could get stuck would have to be in direct line of sight of waypoint 1. Are they?

To teleport to waypoint 1 you can use

Code: Select all

teleportToWP(1)
probably in one of Lisas unstick functions.

Re: unstuck teleport....

Posted: Sun Apr 22, 2012 10:14 am
by iceer
function unStick9()
teleportToWP(1)
end

should work right?