Trying to make a soup pluggin help!

Discussion in 'Plugin Development' started by FelicityFactions, May 4, 2014.

Thread Status:
Not open for further replies.
  1. Hey, I need help with the "Soup" code. I'am recently new to coding in Eclipse. I've tryed to make the pluggin work, because I need it coded to my Minecraft kitPvP servers. Help please ASAP.
    Here's my file/class.
     
  2. Offline

    Konkz

    Put the code in right tags, also, what is the error you get?

    In actual fact, is that a class of its own? Or is that you main class? Because if it
    is your main class you don't register any events and you don't extend JavaPlugin
    therefore your plugin won't work.

    Make sure that you are aware of Java syntax and learn Bukkit API before attempting to
    make a whole plugin.
     
  3. You need to register the events:
    Code:java
    1. public void onEnable() {
    2. Bukkit.getPluginManager.registerEvents(this, this);
    3. }
     
Thread Status:
Not open for further replies.

Share This Page