Advertisement
comniemeer

Untitled

Dec 11th, 2012
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.75 KB | None | 0 0
  1. package me.comniemeer.funinator;
  2.  
  3. import org.bukkit.ChatColor;
  4. import org.bukkit.plugin.java.JavaPlugin;
  5.  
  6. public class Funinator extends JavaPlugin {
  7.  
  8.     @Override
  9.     public void onDisable() {        
  10.         System.out.println("[Funinator] Plugin beendet.");
  11.     }    
  12.     @Override
  13.     public void onEnable() {
  14.         System.out.println("[Funinator] Plugin gestartet.");
  15.         System.out.println("[Funinator] Plugin by comniemeer");
  16.        
  17.         this.getCommand("pingusmash").setExecutor(new CommandPingusmash(this));
  18.        
  19.             this.getCommand("pingusmash").setPermissionMessage(ChatColor.DARK_RED + "Keine Berechtigung!");
  20.         this.getCommand("pingusmash").setUsage(ChatColor.GOLD + "[Pingusmash] " + ChatColor.RED + "/<command> " + ChatColor.DARK_GREEN +  "join [Spieler] | [set]");
  21.  
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement