Welcome!

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

Sign up now!

Unable to load manifest.xml

Joined
Nov 18, 2013
Messages
120
I followed the quick setup guide for intellij and runemate and get an NPE when It tries to load the manifest.

(10:44:31) Unable to load com\dibes\bots\testbot\testbot.manifest.xml (NullPointerException: null)

My manifest
Code:
<manifest>
    <!-- The main class -->
    <main-class>com.dibes.bots.testbot.TestBot</main-class>
    <name>Test Bot</name>
    <description>This just makes sure stuff is running!</description>
    <version>0.0.1</version>
    <compatability>
        <game-type>RS3</game-type>
    </compatability>
    <categories>
        <category>WOODCUTTING</category>
    </categories>
</manifest>

Not sure what is causing this,

Thanks!
 
Last edited:
Joined
Nov 18, 2013
Messages
120
I copied another manifest over and it seemed to load. Musta messed up some sort of formatting or something. Leaving this open in case a bug does exist.
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
6,774
That's odd. Maybe it doesn't like you having a '.' in the name of the file?
 
Joined
Dec 10, 2014
Messages
3,255
I followed the quick setup guide for intellij and runemate and get an NPE when It tries to load the manifest.

(10:44:31) Unable to load com\dibes\bots\testbot\testbot.manifest.xml (NullPointerException: null)

My manifest
Code:
<manifest>
    <!-- The main class -->
    <main-class>com.dibes.bots.testbot.TestBot</main-class>
    <name>Test Bot</name>
    <description>This just makes sure stuff is running!</description>
    <version>0.0.1</version>
    <compatability>
        <game-type>RS3</game-type>
    </compatability>
    <categories>
        <category>WOODCUTTING</category>
    </categories>
</manifest>

Not sure what is causing this,

Thanks!
"compatibility", not "compatability"

:)
 
Top