Welcome!

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

Sign up now!

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