GoldenGates Posted August 29, 2013 Share Posted August 29, 2013 As of V1.7.34 its not working? Maybe client side! Walking does not work at all in 1.7.34. Link to comment Share on other sites More sharing options...
YinZ Posted August 29, 2013 Share Posted August 29, 2013 Fixed Version 1.7.35! Link to comment Share on other sites More sharing options...
lazyy Posted April 21, 2014 Share Posted April 21, 2014 does this still work Link to comment Share on other sites More sharing options...
Joseph Posted April 21, 2014 Share Posted April 21, 2014 Check it out and let us know Link to comment Share on other sites More sharing options...
Guest Apogee Posted April 22, 2014 Share Posted April 22, 2014 Check it out and let us know I've already tried this, a long with a lot of other walking methods. Have a look at this: private boolean walkPath(Position[] path) { Position finalPos = null; for (Position pos : path) { if (canReach(pos) && pos.distance(client.getMyPlayer().getPosition()) < 18) { finalPos = pos; } } if ((finalPos != null && (client.getDestination() == null || client .getDestination().distance(finalPos) > 3))) { try { finalPos.walkMinimap(bot); } catch (InterruptedException e) { e.printStackTrace(); } } if (finalPos == null) { return false; } return true; } } To use it, you must have an Position[] or what everyone calls "path". It looks like this: private Position[] TO_REDBIRD = new Position[] { new Position(2453, 3087, 0), new Position(2449, 3071, 0), new Position(2440, 3056, 0), new Position(2432, 3039, 0), new Position(2436, 3045, 0), new Position(2448, 3034, 0), new Position(2461, 3024, 0), new Position(2470, 3021, 0), new Position(2479, 3019, 0), new Position(2485, 3004, 0), new Position(2485, 2993, 0), new Position(2957, 3261, 0), new Position(2491, 2987, 0), new Position(2491, 2972, 0), new Position(2498, 2957, 0), new Position(2506, 2941, 0), new Position(2513, 2925, 0), new Position(2521, 2910, 0), new Position(2527, 2894, 0), new Position(2543, 2893, 0), new Position(2554, 2892, 0), new Position(2561, 2894, 0), new Position(2577, 2894, 0), new Position(2590, 2904, 0), new Position(2599, 2911, 0), new Position(2605, 2914, 0), new Position(2609, 2924, 0) }; After you have that, you just walk to all those positions with this: walkPath(TO_REDBIRD); Then you're done. It will walk to the location and stop at the final position. If i helped reply back, or just leave a like :p. Link to comment Share on other sites More sharing options...
lolmanden Posted April 22, 2014 Share Posted April 22, 2014 Well done Link to comment Share on other sites More sharing options...
lazyy Posted April 22, 2014 Share Posted April 22, 2014 Well done *Reacts to 9 months old thread* *Scripters is already gone* *postcounthookar* Link to comment Share on other sites More sharing options...
lolmanden Posted April 22, 2014 Share Posted April 22, 2014 *Reacts to 9 months old thread* *Scripters is already gone* *postcounthookar* Ikr Link to comment Share on other sites More sharing options...