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 UTFDataFormatException help me!

Joined
Dec 6, 2015
Messages
35
Got an issue when I trz to start an instance. It contains now for alreadz bout half a week. Already reinstalled mz System I dunno what to do :c Problem comes with all bots

a.exe" -jar RuneMate.jar
[Debug] RuneMate Version: 2.3.3
[Debug] Java Version: 8u102 x86 (Oracle Corporation)
[Debug] Operating System: Windows Server 2008 R2 x64
The modscript that was requested arrived in a format that is unusable because it
triggered a UTFDataFormatException.
java.io.UTFDataFormatException: malformed input around byte 132
at java.io.DataInputStream.readUTF(Unknown Source)
at java.io.DataInputStream.readUTF(Unknown Source)
at nul.iIIIIIiIiiiI.true(kwa:190)
at nul.iIIIIIiIiiiI.<init>(kwa:145)
at nul.iiIiiIiIIiII.true(ksa:168)
at nul.iiiiIIiIiIII.run(ylb:27)
 
Joined
Nov 3, 2013
Messages
609
I'm getting this whenever I use the default web:
Code:
java.io.UTFDataFormatException
    at java.io.ObjectInputStream$BlockDataInputStream.readUTFSpan(Unknown Source)
    at java.io.ObjectInputStream$BlockDataInputStream.readUTFBody(Unknown Source)
    at java.io.ObjectInputStream$BlockDataInputStream.readUTF(Unknown Source)
    at java.io.ObjectInputStream.readUTF(Unknown Source)
    at nul.iiIIIIiiIiIi.true(dfb:34)
    at nul.iiIIIIiiIiIi.true(dfb:53)
    at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.build(oza:12)
    at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.buildTo(oza:185)
    at scripts.mining.GenericPathBuilder.buildTo(GenericPathBuilder.java:40)
Line 40 is just:
path = web.getPathBuilder().buildTo(dest);
 
Super Bot Author
Joined
Jun 24, 2016
Messages
151
I'm getting this whenever I use the default web:
Code:
java.io.UTFDataFormatException
    at java.io.ObjectInputStream$BlockDataInputStream.readUTFSpan(Unknown Source)
    at java.io.ObjectInputStream$BlockDataInputStream.readUTFBody(Unknown Source)
    at java.io.ObjectInputStream$BlockDataInputStream.readUTF(Unknown Source)
    at java.io.ObjectInputStream.readUTF(Unknown Source)
    at nul.iiIIIIiiIiIi.true(dfb:34)
    at nul.iiIIIIiiIiIi.true(dfb:53)
    at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.build(oza:12)
    at com.runemate.game.api.hybrid.location.navigation.web.WebPathBuilder.buildTo(oza:185)
    at scripts.mining.GenericPathBuilder.buildTo(GenericPathBuilder.java:40)
Line 40 is just:
path = web.getPathBuilder().buildTo(dest);

I've gotten the exact same thing starting a few days ago. I isolated the problem to the buildTo(destination) function where destination is a coordinate. I haven't tried making destination an Area yet.
 
Joined
Nov 3, 2013
Messages
609
I've gotten the exact same thing starting a few days ago. I isolated the problem to the buildTo(destination) function where destination is a coordinate. I haven't tried making destination an Area yet.
dest is a Locatable for me, so I'm guessing it's going to fail with any of them.
 
Super Bot Author
Joined
Jun 24, 2016
Messages
151
dest is a Locatable for me, so I'm guessing it's going to fail with any of them.
Probably :(

Another thing I forgot to mention. This doesn't happen every time. The bot is usually able to use web paths 2 or 3 times before this error happens.
 
Top