So it's not just me? Trying to write my first script here, but it just won't move when told to.
public static Area bankArea = new Area.Polygonal(
new Coordinate(2331, 3691, 0),
new Coordinate(2331, 3687, 0),
new Coordinate(2328, 3687, 0),
new Coordinate(2328, 3691, 0)
);
Path p = BresenhamPath.buildTo(bankArea);
if(p != null) {
System.out.println("Step");
p.step();
}
I do get spam "Step" in console, but nothing is happening.
Also tried this:
WebPath toBank = Traversal.getDefaultWeb().getPathBuilder().buildTo(bankArea);
if (toBank != null) {
System.out.println("Step");
toBank.step(true);
}
Again, it spams "Step" but nothing happens.
It's OSRS, fixed mode