PDA

View Full Version : Request: If position(x,y,z) gotolabel X / If died and reconnected, goto label X



zembon
11-22-2016, 03:31 PM
Hello,

I'm looking for a script that goes to label X after i've died and reconnected. (via built in reonnect function)

This could also be achieved if im at pos(x,y,z) of my temple spawn point --> goto label x.

Thanks in advance!

Fetbojj
11-25-2016, 08:56 AM
function Walker.Goto(label, relative)

if Self.Position(x, y, z) do

Walker.Stop()
Targeting.Stop()
Looter.Stop()
wait(500,1000)
Walker.Goto('Died')
wait(500,1000)
Walker.Start()
Targeting.Start()
Looter.Start()

end
end

you basically answered your own question :)