Welcome!

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

Sign up now!

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
302
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