Runemate seems to misclick a lot while dropping inventory items. I don't normally mind, in fact I think it's a good anti-pattern measure, however sometimes it will accidently select an item and get stuck.
How can I check if an item in my inventory is selected? And how can I deselect an item...
Is there a way to check if specific item in inventory is in the last inventory slot, or at least which inventory slot? Need a Boolean.
And which part of the API i should use if i get a similar question.
ForEach is better way to Dropping items?
Actually I'm using a code like this below and the bot stills undropping some items.
for (SpriteItem x : Inventory.getItems()){
if (x != null){
if (x.interact("Drop")){
Execution.delayUntil(() -> !x.isValid(), 1200);
}...