Could not load...

Discussion in 'Plugin Development' started by iKrazy, Aug 16, 2011.

Thread Status:
Not open for further replies.
  1. Offline

    iKrazy

    Code:
    [SEVERE] Could not load 'plugins/Fireworks.jar' in folder 'plugins':

    Fixed!

    For anyone who had the problem above, with no error log afterwards, the solution is in your plugin.yml! Triple check it!
     
  2. Offline

    EdTheLoon

    Would be really helpful if you pasted the rest of the stack trace (aka the scary looking error list)

    You've made a mistake whilst registering your event.
    Code:java
    1. pm.registerEvent(Event.Type.PLAYER_MOVE, playerListener, Priority.Normal, this);


    It should be
    Code:java
    1. pm.registerEvent(Type.PLAYER_MOVE, playerListener, Priority.Normal, this);


    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 18, 2016
  3. Offline

    iKrazy

    There is no error list :s I'll change the register event real fast thanks!

    Could not load 'plugins/Fireworks.jar' in folder 'plugins':


    Edit: I changed the code and tried exporting it again just to see if it would work, and it still has the same aforementioned error.
     
  4. Offline

    EdTheLoon

    Are you compiling your jar properly? Make sure you also add plugin.yml when compiling as it is needed.
     
  5. Offline

    NeoSilky

    i had this, this morning, check the plugin.yml :)
     
  6. Offline

    iKrazy

    Yeah my friend helped me out, was a problem with the plugin.yml I had it messed up and he missed it the first time :S Thanks!
     
  7. Offline

    NeoSilky

    i had the exact same problem :p
     
Thread Status:
Not open for further replies.

Share This Page