Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Bug Webwalking cannot build a path.

Joined
Jul 8, 2020
Messages
3
Code:
private final Area areaStart = new Area.Rectangular(
        new Coordinate(3226, 3239, 0),
        new Coordinate(3233, 3242, 0)
);

// This
final WebPath path = Traversal.getDefaultWeb().getPathBuilder().buildTo(new Coordinate(3228, 3240, 0));
// Or this won't work
final WebPath path = Traversal.getDefaultWeb().getPathBuilder().buildTo(areaStart.getRandomPosition());

if (path != null) {
    path.step();
}
else {
    System.out.println("Couldn't build a path.");
}
Is there an issue with the webwalker, or am I forgetting something?

Forgot to mention, I'm walking from rimmington mine to lumbridge in OSRS.
 
Last edited:
Go check out new bots and give helpful feedback.
Joined
Jan 31, 2016
Messages
5,413
Code:
private final Area areaStart = new Area.Rectangular(
        new Coordinate(3226, 3239, 0),
        new Coordinate(3233, 3242, 0)
);

// This
final WebPath path = Traversal.getDefaultWeb().getPathBuilder().buildTo(new Coordinate(3228, 3240, 0));
// Or this won't work
final WebPath path = Traversal.getDefaultWeb().getPathBuilder().buildTo(areaStart.getRandomPosition());

if (path != null) {
    path.step();
}
else {
    System.out.println("Couldn't build a path.");
}
Is there an issue with the webwalker, or am I forgetting something?

Forgot to mention, I'm walking from rimmington mine to lumbridge in OSRS.
Either your destination you are trying to build to is unreachable, or there is some other issue with traversal which has been present for a while.
 
Joined
Jul 8, 2020
Messages
3
I can't imagine rimmington mine to lumbridge pub would be unreachable. What a shame though, I was planning on porting my questing bot to Runemate. But that'll be a pain without webwalking.
 
Go check out new bots and give helpful feedback.
Joined
Jan 31, 2016
Messages
5,413
I can't imagine rimmington mine to lumbridge pub would be unreachable. What a shame though, I was planning on porting my questing bot to Runemate. But that'll be a pain without webwalking.
Indeed it will be.
 
Joined
Sep 21, 2018
Messages
20
Im also trying out scripting an al kharid warrior fighter and the webwalking just sometimes doesn't want to work, it doesn't path through some doors
 
Go check out new bots and give helpful feedback.
Joined
Jan 31, 2016
Messages
5,413
Im also trying out scripting an al kharid warrior fighter and the webwalking just sometimes doesn't want to work, it doesn't path through some doors
Yeah if it is just a simple one I would recommend using Areas and if you aren't in the area for the room with the warriors, check if the door is open before trying to path into it.
 
Joined
Sep 21, 2018
Messages
20
Yeah if it is just a simple one I would recommend using Areas and if you aren't in the area for the room with the warriors, check if the door is open before trying to path into it.
I could learn to build a map like that, but i wish there were some consistent ways to do things in the program. Most info is outdated etc..
 
Go check out new bots and give helpful feedback.
Joined
Jan 31, 2016
Messages
5,413
I could learn to build a map like that, but i wish there were some consistent ways to do things in the program. Most info is outdated etc..
Its not easy, but it isn't impossible.
 
Top