Mushphang Posted July 7, 2017 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
Chris Posted July 7, 2017 Posted July 7, 2017 try getMouse().click(new MainScreenTileDestination(getBot(), pos)); or WalkingEvent event = new WalkingEvent(pos); event.setMinDistanceThreshold(0); execute(event); 2
Mushphang Posted July 7, 2017 Author 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