- Thread Author
- #1
i couldn't find anything here on the forums helping with this issue so hopefully this post can be the last.
i'm trying to just walk from the east fally bank to south of fally and it's failing to build a default path
i'm also doing the same thing for walking to the bank, only difference is is i'm using Rectangular for bankArea.
i just switched from another botting client and so i'm pretty new to the runemate api if it's changed or i'm doing something wrong any help is great, thanks.
i'm trying to just walk from the east fally bank to south of fally and it's failing to build a default path
Code:
private final Coordinate standCoord = new Coordinate(3003, 3312, 0);
private final Area treeArea = new Area.Circular(standCoord, 8);
if (Players.getLocal() != null && !treeArea.contains(Players.getLocal())) {
final WebPath path = Traversal.getDefaultWeb().getPathBuilder().buildTo(standCoord);
if (path == null) {
System.out.println("tree path is null");
return;
}
path.step(true);
}
i'm also doing the same thing for walking to the bank, only difference is is i'm using Rectangular for bankArea.
i just switched from another botting client and so i'm pretty new to the runemate api if it's changed or i'm doing something wrong any help is great, thanks.