Kit PvP Main Class Help

Discussion in 'Bukkit Help' started by Matroix7, Aug 2, 2014.

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

    Matroix7

    This is my code so far
    Code:java
    1. package net.fadenetwork.fadekits;
    2.  
    3. import java.util.ArrayList;
    4.  
    5. import org.bukkit.plugin.java.JavaPlugin;
    6.  
    7. public class Main extends JavaPlugin {
    8. private Events Events = new Events();
    9. ArrayList<String> Fiserman = new ArrayList<String>();
    10. ArrayList<String> Archer = new ArrayList<String>();
    11. ArrayList<String> PvP = new ArrayList<String>();
    12. ArrayList<String> kitused = new ArrayList<String>();
    13. ArrayList<String> Kangaroo = new ArrayList<String>();
    14.  
    15.  
    16. public void onEnable() {
    17. commands();
    18. }
    19. public void commands() {
    20. getCommand("PvP").setExecutor(new PvP());
    21. getCommand("Archer").setExecutor(new Archer());
    22. getCommand("Kangaroo").setExecutor(new Kangaroo());
    23. }
    24.  
    25. public void events() {
    26.  
    27.  
    28.  
    29. }
    30. }
    31.  

    I only need help with the events part of my class! I've tried everything! I tried looking it up, youtube videos but nothing! Please help!
     
  2. Offline

    LukesComputers

    I would love to help. If you could provide a more detailed explanation of what you are trying do that would be great!
     
Thread Status:
Not open for further replies.

Share This Page