- Joined
- Jun 24, 2016
- Messages
- 151
- Thread Author
- #1
I keep on getting this exception whenever the bot is supposed to walk to a bank chest. I get the below exception when I try to walk to the Clan Camp bank chest. The coordinates there are the coordinates of the bank chest (assuming nothing changed since I implemented this bank).
I get the same exception when the bot tries to walk to the Cabbage Facepunch Bonanza bank chest (north of the Lumbridge crater), but with the coordinates for the bank chest (3170, 3280, 0).
Here's the code that has the error (with some parts that don't directly have to do with the error omitted):
The Coordinates sent to the method are:
These aren't the exact method calls, they're in variables holding the Coordinate.
This has been happening since the RuneMate v2.4.0 update.
I hope I put this in the right spot, I couldn't decide if it should go in Developer Support or Client & Site Support. Sorry in advance if I put it in the wrong subforum.
Code:
java.lang.UnsupportedOperationException: An unhandleable vertex has been detected in a WebPath: ObjectBankVertex(^Bank chest$, ^Use$, 2955, 3297, 0)
at com.runemate.game.api.hybrid.location.navigation.web.WebPath.getNext(ljb:129)
at com.runemate.game.api.hybrid.location.navigation.web.WebPath.step(ljb:71)
at com.runemate.game.api.hybrid.location.navigation.Path.step(mpb:104)
at com.runemate.game.api.hybrid.location.navigation.Path.step(mpb:122)
at com.SuperBotter.api.Methods.goToArea(Methods.java:21)
at com.SuperBotter.api.tasks.Store.execute(Store.java:65)
at com.runemate.game.api.script.framework.task.TaskBot.onLoop(qab:35)
at com.runemate.game.api.script.framework.LoopingBot.run(ccb:218)
at com.runemate.game.api.script.framework.AbstractBot.start(uza:189)
at nul.iiiIiIiiIIII.run(frb:31)
RuneMate v2.4.0.2 - SuperMiner v0.5.7 - RS3 468572 - Windows 10 - Java8u92 x86 (Oracle Corporation)
I get the same exception when the bot tries to walk to the Cabbage Facepunch Bonanza bank chest (north of the Lumbridge crater), but with the coordinates for the bank chest (3170, 3280, 0).
Here's the code that has the error (with some parts that don't directly have to do with the error omitted):
Code:
public class Methods {
private WebPathBuilder webPathBuilder = Traversal.getDefaultWeb().getPathBuilder();
public void goToArea(Coordinate destination) {
WebPath wp = webPathBuilder.buildTo(destination);
if (wp != null) {
wp.step(); // this is line 21 (the line the error occurs on)
}
}
}
The Coordinates sent to the method are:
Code:
// area with clan camp bank chest as the center coordinate
methods.goToArea(new Area.Circular(new Coordinate(2955, 3297, 0), 5).getRandomCoordinate());
// and an area with the cabbage whatever chest as the center coordinate
methods.goToArea(new Area.Circular(new Coordinate(3170, 3280, 0), 5).getRandomCoordinate());
This has been happening since the RuneMate v2.4.0 update.
I hope I put this in the right spot, I couldn't decide if it should go in Developer Support or Client & Site Support. Sorry in advance if I put it in the wrong subforum.