- Joined
- Dec 20, 2016
- Messages
- 37
- Thread Author
- #1
Current Temporary fix:
if (Bank.Deposite) {
// woot it worked, yay
} else {
// dang stuck, lets move mouse to our inventory
Mouse.move(Inventory.getBoundsOf(0));
}
[RS3]
Hello I have been getting this bug a lot frequently, I was wondering if any of you have run into the same issue.
When I use the Bank.Deposit or Bank.Withdraw methods, sometimes, the bot will miss-right click an item and open up a dialogue that only says cancel.
The mouse will not move after a misclick, just stays there. (I guess its looking for the option, but never finds it) The only way to fix this, is when 5 minute auto log takes effect:
Image of what happens:
Here is the code I'm using, and below that is the output.
Should I be implementing these methods in a different way?
if (Bank.Deposite) {
// woot it worked, yay
} else {
// dang stuck, lets move mouse to our inventory
Mouse.move(Inventory.getBoundsOf(0));
}
[RS3]
Hello I have been getting this bug a lot frequently, I was wondering if any of you have run into the same issue.
When I use the Bank.Deposit or Bank.Withdraw methods, sometimes, the bot will miss-right click an item and open up a dialogue that only says cancel.
The mouse will not move after a misclick, just stays there. (I guess its looking for the option, but never finds it) The only way to fix this, is when 5 minute auto log takes effect:
Image of what happens:
Here is the code I'm using, and below that is the output.
Code:
if (Bank.isOpen()) {
Material mat = bot.settings.materials[0];
if (Inventory.newQuery().names(mat.name).results().size() <= mat.requiredAmount) {
if (Bank.withdraw(mat.name, 10)) {
getLogger().info("Withdrawing " + mat.name);
} else {
getLogger().warn("Failed to withdraw " + mat.name);
}
}
}
Code:
00:02:36 WARN [Bank] Action not found in [Cancel]
00:02:36 WARN Failed to withdraw Runite ore
00:02:36 WARN [Bank] Action not found in [Cancel]
00:02:36 WARN Failed to withdraw Runite ore
00:02:36 TRACE [Bank] Withdrawing with action: Withdraw
00:02:36 TRACE [Bank] Withdrawing with action: Withdraw
00:02:36 WARN [Bank] Action not found in [Cancel]
00:02:36 WARN Failed to withdraw Runite ore
00:02:37 WARN [Bank] Action not found in [Cancel]
00:02:37 WARN Failed to withdraw Runite ore
00:02:37 TRACE [Bank] Withdrawing with action: Withdraw
00:02:37 TRACE [Bank] Withdrawing with action: Withdraw
00:02:37 WARN [Bank] Action not found in [Cancel]
00:02:37 WARN Failed to withdraw Runite ore
00:02:37 TRACE [Bank] Withdrawing with action: Withdraw
00:02:37 WARN [Bank] Action not found in [Cancel]
00:02:37 WARN Failed to withdraw Runite ore
00:02:38 TRACE [Bank] Withdrawing with action: Withdraw
00:02:38 WARN [Bank] Action not found in [Cancel]
00:02:38 WARN Failed to withdraw Runite ore
00:02:38 TRACE [Bank] Withdrawing with action: Withdraw
00:02:38 WARN [Bank] Action not found in [Cancel]
00:02:38 WARN Failed to withdraw Runite ore
00:00:00 TRACE [InputManager] Keyboard input UNBLOCKED
00:00:00 TRACE [InputManager] Keyboard input UNBLOCKED
00:02:38 WARN [Bank] Action not found in [Cancel]
00:02:38 WARN Failed to withdraw Runite ore
Should I be implementing these methods in a different way?
Last edited: