futurepasts Posted January 2, 2016 Posted January 2, 2016 Hello today i opened my osbot and saw that they finally added webwalking but how to use it tried to look at api but didn't understood shit i wan't to use webwalking because its better than localwalking method. And if sombody helps me pls give small tutorial on how to walk to place i wanted if possible Example: Varrock West mine Thanks.
Vilius Posted January 2, 2016 Posted January 2, 2016 getWalking().webWalk(position); ie. walk to bank. getWalking().webWalk(Banks.VARROCK_EAST.getRandomPosition());
Alek Posted January 2, 2016 Posted January 2, 2016 I gave an example in the release thread, I also detailed it's current limitations and future improvements.
progamerz Posted January 2, 2016 Posted January 2, 2016 Hello today i opened my osbot and saw that they finally added webwalking but how to use it tried to look at api but didn't understood shit i wan't to use webwalking because its better than localwalking method. And if sombody helps me pls give small tutorial on how to walk to place i wanted if possible Example: Varrock West mine Thanks. create a new positon with the tiles eg : private Position name = new Position(3253, 3398, 0); and then to use webwalker u use walking.webWalk(name);
Vilius Posted January 2, 2016 Posted January 2, 2016 create a new positon with the tiles eg : private Position name = new Position(3253, 3398, 0); and then to use webwalker u use walking.webWalk(name); or just getWalking().webWalk(new Position(x,y,z));