Advertisement
Guest User

Main

a guest
Nov 25th, 2012
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. package com.hotmail.MineCrypt.CTF;
  2.  
  3.  
  4.  
  5. import org.bukkit.plugin.java.JavaPlugin;
  6.  
  7. public class CTFMain extends JavaPlugin {
  8.  
  9. @Override
  10. public void onEnable() {
  11. getLogger().info("CTF has been enabled!");
  12. getConfig().options().copyDefaults(true);
  13. saveConfig();
  14. this.getCommand("ctf").setExecutor(new CTFArenaJoin(this));
  15. }
  16.  
  17. @Override
  18. public void onDisable() {
  19. getLogger().info("CTF has been disabled!");
  20. }
  21.  
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement