Welcome!

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

Sign up now!
RuneMate will permanently shut down on August 7, 2026
due to events outside our control. You can continue using RuneMate until this date after which it will no longer be available. Thank you to everyone that contributed to RuneMate's success and to the community for the opportunity to serve you all these years.

  • Learn about RuneMate Vault and how its zero knowledge local encryption already protects your sensitive information.
  • Edit or delete your RuneMate account from your Account Settings.
  • All account upgrade subscriptions have been cancelled. No action required.

Resolved Interacting with GroundItems bugged on DarkScape?

Joined
Oct 12, 2014
Messages
181
Code:
if(Hide.interact("Take"))
Execution.delayUntil(() -> !Hide.isValid() || !Hide.isVisible(), 2000, 3000);

If the GroundItem is below another item in the stack, it will just click on the stack, resulting in the wrong item getting picked up. It doesn't right click, to pick up the correct item.
 
I turned on one-button gameplay, and it still picks up the first item in the stack, even though it's only supposed to loot item 2.
  • Item 1 in stack: Raw beef, will pick-up
  • Item 2 in stack: Cowhide, will pick-up
  • Item 3 in stack: Bones, will not pick-up
 
Alpaca master
Joined
Sep 23, 2015
Messages
13
Code:
if(Hide.interact("Take"))
Execution.delayUntil(() -> !Hide.isValid() || !Hide.isVisible(), 2000, 3000);

If the GroundItem is below another item in the stack, it will just click on the stack, resulting in the wrong item getting picked up. It doesn't right click, to pick up the correct item.
 
I turned on one-button gameplay, and it still picks up the first item in the stack, even though it's only supposed to loot item 2.
  • Item 1 in stack: Raw beef, will pick-up
  • Item 2 in stack: Cowhide, will pick-up
  • Item 3 in stack: Bones, will not pick-up

not sure if you still need help, but you should use Hide.interact("Take", Hide.getName())
 
Top