Welcome!

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

Sign up now!

Question Path through obstacles

Joined
Nov 7, 2015
Messages
31
I'm trying to walk to a certain point. But on the route contains one door.
Is there something to automatically open the door?

Code:
private void walkToFurnace() {
    Path path = Traversal.getDefaultWeb().getPathBuilder().buildTo(Random.nextElement(Constants.FURNACE_AREA));
    if (path != null) {
        path.step();
    }
}
 
Client Developer
Joined
Oct 12, 2015
Messages
3,781
Default web should handle the door. If not, take a screenshot of the door open and close, the coordinate of the closed door and leave it here with a tag for slash
 
Joined
Nov 7, 2015
Messages
31
@SlashnHax
Coordinate: 3279, 3185, 0
709b54c14a4f0ecfcad8b35774168549.png
 
Top