1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Bug XML script not loading (Null pointer exception)

Discussion in 'Developer Support' started by Mischief, Aug 6, 2020.

  1. Mischief

    Joined:
    Aug 5, 2020
    Messages:
    1
    Likes Received:
    0
    Solved: I can't spell to save my life

    I'm trying to set up my test environment and I can't seem to load my very first basic script bot.
    I keep getting a null pointer exception error:
    Unable to load com/bots/testbot/testbot.manifest.xml (java.lang.NullPointerException: null)
    [​IMG]
    My file appears to be located in the correct place and the code seems fine.
    [​IMG]
    Code (Text):
    1.  
    2. <manifest>
    3.     <main-class>com.mischief.bots.testbot.testbot</main-class>
    4.     <name>test bot</name>
    5.     <tag-line>Catchy</tag-line>
    6.     <description>Testing bot</description>
    7.     <version>1.0.2</version>
    8.     <compatability>
    9.         <game>OSRS</game>
    10.         <game>RS3</game>
    11.     </compatability>
    12.     <categories>
    13.         <category>WOODCUTTING</category>
    14.     </categories>
    15.     <internal-id>testbot</internal-id>
    16.     <open-source>true</open-source>
    17.     <hidden>false</hidden>
    18.     <access>public</access>
    19.     <tags>
    20.         <tag>Tree</tag>
    21.         <tag>Vine</tag>
    22.     </tags>
    23. </manifest>
    24.  
     
    #1 Mischief, Aug 6, 2020
    Last edited: Aug 6, 2020
  2. Michaud.retard

    Joined:
    Sep 14, 2019
    Messages:
    18
    Likes Received:
    15
    Should now work in the <compatibility> you rote <compatAbility>.
    Code (Text):
    1. <manifest>
    2.     <main-class>com.mischief.bots.testbot.testbot</main-class>
    3.     <name>test bot</name>
    4.     <description>Testing bot</description>
    5.     <version>1.0.2</version>
    6.     <compatibility>
    7.         <game>OSRS</game>
    8.     </compatibility>
    9.     <categories>
    10.         <category>WOODCUTTING</category>
    11.     </categories>
    12. </manifest>
     

Share This Page

Loading...