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.

Question Only a Thread within a bot's ThreadGroup may eavesdrop on the game client

Joined
Feb 9, 2019
Messages
14
What could be causing this?

Code:
java.lang.UnsupportedOperationException: Only a Thread within a bot's ThreadGroup may eavesdrop on the game client. Current Thread=Thread[pool-51-thread-62,5,[t-g]6772 - Cow Killer Beta]
 at nul.IiIIiIiiIIIiI.iIiiiiiiIiiii(gad:3)
 at nul.iiIiiIiiiIIii.iIIIiiiiIiIiI(evc:75)
 at nul.iiIiiIiiiIIii.iIiiiiiiIiiii(evc:223)
 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
 at java.lang.Thread.run(Thread.java:748)
RuneMate v2.99.5.0 - Cow Killer Beta v0.9 - OSRS r179 A53A6B - Windows 7 - Java v1.8.0_181 x86 (Oracle Corporation)
 
Java Warlord
Joined
Nov 17, 2014
Messages
4,906
Error occurs when when you're polling ingame specific information such as Npcs, GameObjects, Varps, and much more from outside the bot's threadgroup. The most common way is authors want to display ingame information such as skills on their UI, but attempt to poll the info on the javafx thread.
In this case though it seems to be caused by runemate, not the bot.
 
Joined
Feb 9, 2019
Messages
14
Error occurs when when you're polling ingame specific information such as Npcs, GameObjects, Varps, and much more from outside the bot's threadgroup. The most common way is authors want to display ingame information such as skills on their UI, but attempt to poll the info on the javafx thread.
In this case though it seems to be caused by runemate, not the bot.
So then should I ignore it or is there something I can do to catch it. I've had 10 of these exceptions just since I went to bed last night...
 
Bot Consultant
Joined
Nov 17, 2014
Messages
336
I believe the correct way to solve it, is to update whatever your javafx controller is reading from the bot thread, and not in the controller's thread as stipulated in the error.
 
Top