hero3128 Posted March 25, 2015 Share Posted March 25, 2015 (edited) Is there a way to get the walking destination of your player as a position? Thanks! Edited March 25, 2015 by hero3128 Quote Link to comment Share on other sites More sharing options...
Lemons Posted March 25, 2015 Share Posted March 25, 2015 getMap().getDestination() Note for some odd reason, if no flag is down it'll return the regions base X/Y, so make sure to check that if (getMap().getDestination().getX() == getMap().getBaseX() && getMap().getDestination().getY() == getMap().getBaseY()) { // Invalid flag } else { // Valid destination } Quote Link to comment Share on other sites More sharing options...