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 NumberFormatException: For input string: ""

Joined
Nov 5, 2014
Messages
505
@Cloud

Code:
java.lang.NumberFormatException: For input string: ""
 at java.lang.NumberFormatException.forInputString(Unknown Source)
 at java.lang.Integer.parseInt(Unknown Source)
 at java.lang.Integer.valueOf(Unknown Source)
 at rm.cOm1.for(w:148)
 at rm.cOm1.false(w:116)
 at rm.nul.validate(o:157)
 at com.runemate.game.api.script.framework.task.TaskScript.onLoop(vrb:99)
 at com.runemate.game.api.script.framework.LoopingScript.run(mwb:85)
 at com.runemate.game.api.script.framework.AbstractScript.start(sqb:171)
 at app.Pn.run(drb:268)
1.1.7 - OSRS
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
It's coming from your code.
the
Code:
rm
base package implies an obfuscated bot where as a
Code:
app
implies an obfuscated section of the client.
 
Joined
Nov 5, 2014
Messages
505
It's coming from your code.
the
Code:
rm
base package implies an obfuscated bot where as a
Code:
app
implies an obfuscated section of the client.

I haven't had a push approved in days though and this exception only started coming through this morning, do you know of any changes which may have caused this?
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
I haven't had a push approved in days though and this exception only started coming through this morning, do you know of any changes which may have caused this?
I would start by looking at any usages of java.lang.Integer.valueOf(Unknown Source) and seeing if the potential inputs changed.
 
Joined
Nov 5, 2014
Messages
505
I would start by looking at any usages of java.lang.Integer.valueOf(Unknown Source) and seeing if the potential inputs changed.

Okay will do. Also, could you push my latest changes please? I had a push notification a few days ago but my approved version didn't change, that may have something to do with this if there's a version conflict somewhere.

edit: Found the problem, pushed a fix
 
Last edited:
Top