Log in

View Full Version : Move to xyz



brindeds
12-21-2015, 02:09 AM
Is there anything that makes me switch to the position I want? I need to be dynamic, so solutions in Walker is unfeasible. Every moment will have different places to move according to the position of the NPC.
It has some function I move to location xyz?

shadowart
12-21-2015, 08:55 AM
Self.WalkTo
-- Walks to a location specified by the paramaters. Will fight with walker/targeter/looter, use wisely.
-- param x the x part of the location
-- param y the y part of the location
-- param z the z part of the location
-- return boolean true when location reached, or false if on different floor, out of range, or failed to reach after 2 seconds of retries

brindeds
12-22-2015, 10:29 AM
Self.WalkTo
-- Walks to a location specified by the paramaters. Will fight with walker/targeter/looter, use wisely.
-- param x the x part of the location
-- param y the y part of the location
-- param z the z part of the location
-- return boolean true when location reached, or false if on different floor, out of range, or failed to reach after 2 seconds of retries

Thanks, worked well.