Advertisement
Guest User

Main

a guest
Jul 12th, 2014
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. package com.BeastCraft3.VanishTools;
  2.  
  3. import java.util.logging.Logger;
  4.  
  5. import org.bukkit.plugin.java.JavaPlugin;
  6.  
  7. public class Main extends JavaPlugin{
  8.  
  9. public final Logger logger = Logger.getLogger("Minecraft");
  10. public static Main plugin;
  11.  
  12. public void onEnable() {
  13. getServer().getPluginManager().registerEvents(new VanishTools(this), this);
  14. new VanishTools(this);
  15. System.out.println("---------------------------------------------------");
  16. System.out.println("Custom Hub plugin Enabled! Developed by BeastCratf3");
  17. System.out.println("---------------------------------------------------");
  18. }
  19.  
  20. public void onDisable() {
  21. System.out.println("---------------------------------------------------");
  22. System.out.println("Custom Hub plugin Disabled! Developed by BeastCratf3");
  23. System.out.println("---------------------------------------------------");
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement