Mushphang Posted July 7, 2017 Share Posted July 7, 2017 (edited) Hi I can't seem to get walking.walk to move exactly one tile like I want it to. I can't find any other posts on this, so sorry for the nooby question(??). It seems to work just fine when moving 4+ tiles Thanks in advance for the help! Position oneTile = new Position((myPlayer().getX() + 1), myPlayer().getY(), myPlayer().getZ()); walking.walk(oneTile); Edited July 7, 2017 by Mushphang Quote Link to comment Share on other sites More sharing options...
Chris Posted July 7, 2017 Share Posted July 7, 2017 try getMouse().click(new MainScreenTileDestination(getBot(), pos)); or WalkingEvent event = new WalkingEvent(pos); event.setMinDistanceThreshold(0); execute(event); 2 Quote Link to comment Share on other sites More sharing options...
Mushphang Posted July 7, 2017 Author Share Posted July 7, 2017 6 minutes ago, Chris said: try getMouse().click(new MainScreenTileDestination(getBot(), pos)); or WalkingEvent event = new WalkingEvent(pos); event.setMinDistanceThreshold(0); execute(event); thank you chris! 1 Quote Link to comment Share on other sites More sharing options...