Advertisement
Grieftime

Untitled

Sep 9th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. package main;
  2.  
  3. import org.bukkit.Bukkit;
  4. import org.bukkit.plugin.PluginManager;
  5. import org.bukkit.plugin.java.JavaPlugin;
  6.  
  7. import command.ClearChatCommand;
  8. import command.ClearLag;
  9. import command.CrashCommand;
  10. import command.EnderChestCommand;
  11. import command.FireCommand;
  12. import command.FlyCommand;
  13. import command.HealCommand;
  14. import command.HelpCommand;
  15. import command.MülleimerCommand;
  16. import command.OhrFickCommand;
  17. import command.VanishCommand;
  18. import command.XPCommand;
  19. import listener.PlayerJoinEvent_Vanish;
  20. import util.Message;
  21.  
  22. public class Main extends JavaPlugin{
  23.  
  24. private static Main plugin;
  25.  
  26. PluginManager pm = Bukkit.getPluginManager();
  27.  
  28. public void onEnable(){
  29. loadCommands();
  30. loadListener();
  31.  
  32. System.out.println(Message.Prefix.getRawMessage() + this.getName() + " wurde erfolgreich geladen!");
  33. }
  34.  
  35. public void onDisable(){
  36.  
  37. System.out.println(Message.Prefix.getRawMessage() + this.getName() + " wurde erfolgreich deaktiviert!");
  38. }
  39.  
  40.  
  41.  
  42. private void loadCommands(){
  43.  
  44.  
  45. }
  46.  
  47. public void loadListener(){
  48.  
  49.  
  50.  
  51.  
  52. }
  53.  
  54. public static Main getInstance(){
  55. return plugin;
  56. }
  57.  
  58.  
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement