Advertisement
maxthelinkfan

Untitled

Sep 16th, 2012
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. package me.kyrp.MaxSpeedz;
  2.  
  3. import org.bukkit.plugin.java.JavaPlugin;
  4.  
  5. public class Main extends JavaPlugin {
  6.  
  7. public void onDisable(){
  8. System.out.println("[MaxSpeedz] Disabled");
  9.  
  10. }
  11.  
  12. public void onEnable() {
  13. getConfig().options().copyDefaults(true);
  14. System.out.println("[MaxSpeedz] Enabled.");
  15. this.getServer().getPluginManager().registerEvents(new Events(), this); {
  16.  
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement