hero3128 Posted March 25, 2015 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
Lemons Posted March 25, 2015 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 }