Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
  1. R

    Resolved How to deselect random selected inventory item?

    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...
  2. richislol95

    Question Inventory slots.

    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.
  3. lucassousa

    Question Best way to dropping?

    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); }...
Top