Welcome!

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

Sign up now!

Resolved Bot doesn't run to specific Area

Joined
Jul 29, 2014
Messages
61
Since the new update the Bot doesn't run to the specific Area that I designated. I've also noticed when using the developer tool "Area Maker" It normally draws to minimap. I can no longer see that aswell.


EDIT: Running on Fixed Mode.

@Cloud
 
Last edited:
Joined
Jun 6, 2015
Messages
7
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
 
Top