Waypoint tag being skipped
Posted: Sun May 04, 2014 3:31 am
I found this with my SecretGarden waypoint and have been getting the same with my daily quest as well. Instead of going to the waypoint specified it would instead go the the one after it, but it would only do this on the 2nd run and all those after.
Both had either __WPL:setDirection(WPT_FORWARD); or the BACKWARD equivalent after setting the waypoint, could that be causing it to move to the next waypoint in one direction or the other?
Code: Select all
<!-- # 1 --><waypoint x="-2559" z="1107" y="19" tag="Main">
doSpiceQuest()
player:mount()
__WPL:setDirection(WPT_FORWARD);
</waypoint>
<!-- # 2 --><waypoint x="-2539" z="1092" y="18" tag="Quest">
</waypoint>
<!-- # 3 --><waypoint x="-2482" z="1056" y="15"> </waypoint> -- skips to this one
<!-- # 4 --><waypoint x="-2257" z="785" y="9"> </waypoint>Code: Select all
else
buyAndSplitPoison()
__WPL:setWaypointIndex(__WPL:findWaypointTag("Quest"));
end