- Joined
- May 24, 2016
- Messages
- 1,113
- Thread Author
- #1
This seems to happen very randomly. Sometimes the bot can function for very long periods of time, but sometimes it won't because the bot refuses to step even when a path is not null. Snippet:
The log from a user of mine is being spammed for hours with:
I've never had this issue anywhere other than in Prifddinas, which is where this bot functions.
edit: Testing if path.getNext() returns null, suggested by @Snufalufugus, he says he's having the same issue with viewport stepping and he is also attempting to step on plane 1 - possibly related?
Code:
Path path = Traversal.getDefaultWeb().getPathBuilder().buildTo(thievingArea);
if (path != null) {
bot.currentTask = "Walking to next clan";
getLogger().info("Web walking to " + thievingArea);
path.step();
}
The log from a user of mine is being spammed for hours with:
Code:
INFO Web walking to Area[center=Coordinate(2140, 3373, 1),radius=20.0]
I've never had this issue anywhere other than in Prifddinas, which is where this bot functions.
edit: Testing if path.getNext() returns null, suggested by @Snufalufugus, he says he's having the same issue with viewport stepping and he is also attempting to step on plane 1 - possibly related?
Last edited: