mlrkey Posted May 23, 2015 Posted May 23, 2015 I've tried using localwalker but it doesn't seem to always put me on the exact tile I need. Is there anyway to do this? Thanks
Czar Posted May 23, 2015 Posted May 23, 2015 (edited) You can set the walker threshold to 0 (if using walking event) or // get minimap tile for position MiniMapTileDestination minimapSpot = new MiniMapTileDestination(getBot(), position); // get main screen tile for position MainScreenTileDestination mainScreenSpot = new MainScreenTileDestination(getBot(), position); // click spot on minimap getMouse().click(minimapSpot); // click spot on main screen getMouse().click(mainScreenSpot); Edited May 23, 2015 by Czar 2