Jeroen Ketelaar

Results 16 comments of Jeroen Ketelaar

I have the same issue, any progress or solution to this?

![image](https://user-images.githubusercontent.com/3681904/70476070-90370780-1a9b-11ea-99c4-95af04fdf1ae.png)

What different do you do from loading music and playing music from a clean 317 client and yours?

Can you refer to this within your own code? So I can look through it

Does it ever reach `#method90`? https://github.com/dginovker/2006rebotted/blob/master/2006Redone%20Client/src/Game.java#L6486 Can you check if the method is being called properly?

And what happens if you run Parabot with `-no_sec `?

Apparently there is a redirect class that you are using; https://github.com/Parabot/Parabot/tree/master/src/main/java/org/parabot/core/asm/redirect It might be SystemRedirect, but you'll have to check this yourself. You could go disable all redirects in: https://github.com/Parabot/Parabot/blob/master/src/main/java/org/parabot/core/asm/RedirectClassAdapter.java#L26...

You might also want to enable print of stack traces (https://github.com/dginovker/2006rebotted/blob/master/2006Redone%20Client/src/Game.java#L3141), so you know where it's coming from ``` } catch (IOException _ex) { dropClient(); _ex.printStackTrace(); } catch (Exception exception)...

So somewhere you are using `java.awt.Toolkit` and the method either doesn't exist in the ToolkitRedirect class or the method returns an error, because it protects its users

I am not sure, to be honest. Somewhere you are not printing your stack traces, therefore it causes an error that you cannot see (really bad practice). I would say...