June 18, 20187 yr I am stuck with handling these two methods provided by OSBot. As I have an unstable connection and get disconnected frequently, whenever these two methods are getting called it is stuck in a loop. getDoorHandler().handleNextObstacle(new Position(3071, 3090, 0)) getDialogues().completeDialogue("Yes"); I am running the client in lowcpu and norandoms mode as I need it to be that way. Had the same issue for webwalking but solved it there with WebWalkEvent with checking !getClient().isLoggedIn() as a break condition. Can't seem to find it for these methods. Any suggestions?
June 18, 20187 yr I've never personally used the DoorHandler API so I can't speak for it specifically but I know there's no way to stop completeDialogue from executing, it needs to reach the end of the current dialogue to stop. So instead of using completeDialogue just use a combination of isPendingContinuation and isPendingOption.
Create an account or sign in to comment