KingBO 0 Posted June 15, 2021 Can someone please point me in the right direction on how to get started with walking in dungeons? In OSBot you can literally just do something like this: static List<Position> path; { path = Arrays.asList( new Position(3273, 3265, 0), new Position(3271, 3277, 0), new Position(3272, 3288, 0), new Position(3273, 3305, 0), new Position(3272, 3313, 0), new Position(3275, 3322, 0) ); } @Override public int onLoop() throws InterruptedException { getWalking().walkPath(path); Is there anything similar to this I can do in dreambot?
SubCZ 284 Posted June 15, 2021 In DreamBot you would add your own web nodes to the web walker, and then walk the dungeon using Walking#walk as usual. The web walker will take care of the rest for you. Check out the WebFinder, BasicWebNode, and EntranceWebNode classes in the API. Example of adding custom web nodes (scroll down for Hashtag's post)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.