iTz EcLiPsE Posted January 7, 2016 Share Posted January 7, 2016 i feel dumb for having to ask but idk what everyone is talking about with this new web walking thing can someone enlighten me? Quote Link to comment Share on other sites More sharing options...
Rocket Posted January 7, 2016 Share Posted January 7, 2016 (edited) Your runescape character can travel anywhere from any starting positionEveryone's talking about it because for script developers, they only need to add in a few lines of code to seamlessly integrate it into their scripts.The OSBot client devs did the majority if not all of the work for webwalking. Edited January 7, 2016 by Rocket Quote Link to comment Share on other sites More sharing options...
Krys Posted January 7, 2016 Share Posted January 7, 2016 you feel dumb? i dont even know what webwalking is.. if this makes you feel better. Quote Link to comment Share on other sites More sharing options...
Mysteryy Posted January 7, 2016 Share Posted January 7, 2016 As a user, just imagine it as: Scripters do not have to hard code paths in their scripts anymore to traverse from point A to point B. Scripters can just say one line, walk to(some spot) and the web walking handles finding the path from point A to point B. That is really all you need to know if your not interested in the details. :P Quote Link to comment Share on other sites More sharing options...
iTz EcLiPsE Posted January 7, 2016 Author Share Posted January 7, 2016 that actually sounds awesome for scripter and for anyone who is learning scripting seems like they made it easier for u guys Quote Link to comment Share on other sites More sharing options...
ANIMA VESTRA Posted January 7, 2016 Share Posted January 7, 2016 As a user, just imagine it as: Scripters do not have to hard code paths in their scripts anymore to traverse from point A to point B. Scripters can just say one line, walk to(some spot) and the web walking handles finding the path from point A to point B. That is really all you need to know if your not interested in the details. Could you go more into detail for someone who is somewhat interested in coding for Java? Quote Link to comment Share on other sites More sharing options...
Mysteryy Posted January 7, 2016 Share Posted January 7, 2016 Could you go more into detail for someone who is somewhat interested in coding for Java? A web is essentially two main concepts. 1) Graph theory fundamentals 2) Pathfinding If you know and understand those two concepts, you can understand the concept of a web walker. Basically the "web" is just a weighted graph, and the path is then generated using pathfinding (A* specifically) From that you have a path from A to B. I dont know your level of knowledge on either of those topics, but start with graph theory fundamentals. 1 Quote Link to comment Share on other sites More sharing options...