trainux Posted June 22, 2018 Share Posted June 22, 2018 I execute: log(player.getPosition()); it gives me as a result: [x=3172, y=3364, z=0] And I am ordering you to address: [x=3172, y=3365, z=0] As follows: getWalking().walk(new Position(3172, 3365, 0)); Why do not you move to the position that I am ordering? Link to comment Share on other sites More sharing options...
ProjectPact Posted June 22, 2018 Share Posted June 22, 2018 need to set threshold to 0 or use minimap on exact tile Link to comment Share on other sites More sharing options...
trainux Posted June 22, 2018 Author Share Posted June 22, 2018 5 minutes ago, Muffins said: if the tile is further than 10 spaces (or off of the minimap) you will need to use getWalking().webWalk() instead. As you can notice, it is only 1 distance coordinate. 1 minute ago, ProjectPact said: need to set threshold to 0 or use minimap on exact tile I did not understand, could you give a better explanation? please. Link to comment Share on other sites More sharing options...
Chris Posted June 22, 2018 Share Posted June 22, 2018 17 minutes ago, trainux said: As you can notice, it is only 1 distance coordinate. I did not understand, could you give a better explanation? please. WalkingEvent event = new WalkingEvent(new Position(0,0,0)); event.setMinDistanceThreshhold(0); execute(event); https://osbot.org/api/org/osbot/rs07/event/WalkingEvent.html 1 Link to comment Share on other sites More sharing options...
trainux Posted June 22, 2018 Author Share Posted June 22, 2018 26 minutes ago, Chris said: WalkingEvent event = new WalkingEvent(new Position(0,0,0)); event.setMinDistanceThreshhold(0); execute(event); Thanks, solved. Link to comment Share on other sites More sharing options...