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.

Bug Client not chopping tree after update

Joined
Apr 18, 2016
Messages
6
seems like interact isnt working no more was working fine before this update

GameObject tree = GameObjects.newQuery().names("Yew").within(yewCord).results().nearest()

if (tree.interact("Chop down")) {
Execution.delayUntil(() -> Players.getLocal().getAnimationId() != -1, 5000);

}
 
Joined
May 24, 2016
Messages
1,113
Isn't it supposed to be 'Yew tree'?

Also check if the object is null.
 
Joined
Apr 18, 2016
Messages
6
Well actually not really a fix but i tried
GameObjects.getLoaded("Yew").nearest()

and it worked. So that means i gatta find a new way to do this in the yewcord any sugges?
 
Client Developer
Joined
Oct 12, 2015
Messages
3,817
Well actually not really a fix but i tried
GameObjects.getLoaded("Yew").nearest()

and it worked. So that means i gatta find a new way to do this in the yewcord any sugges?

Create an area and search for trees within that area. Though I'm not sure why it would need to be on a specific coordinate?
 
Top