- Thread Author
- #1
I'm trying to walk to a certain point. But on the route contains one door.
Is there something to automatically open the 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();
}
}