Welcome!

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

Sign up now!
RuneMate will permanently shut down on August 7, 2026
due to events outside our control. You can continue using RuneMate until this date after which it will no longer be available. Thank you to everyone that contributed to RuneMate's success and to the community for the opportunity to serve you all these years.

  • Learn about RuneMate Vault and how its zero knowledge local encryption already protects your sensitive information.
  • Edit or delete your RuneMate account from your Account Settings.
  • All account upgrade subscriptions have been cancelled. No action required.

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
 
Joined
Jul 29, 2014
Messages
61
Where abouts is the area and which Path type are you building/using?

Circular I even tried Rectangular and that didn't work. I was using RegionPath but also Tried BresenhamPath and that didn't work.
 
Top