Advertisement
Guest User

Untitled

a guest
Nov 8th, 2014
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. package me.FrosTy.PlatformWars;
  2.  
  3. import org.bukkit.Material;
  4. import org.bukkit.command.Command;
  5. import org.bukkit.command.CommandSender;
  6. import org.bukkit.enchantments.Enchantment;
  7. import org.bukkit.entity.Player;
  8. import org.bukkit.inventory.ItemStack;
  9. import org.bukkit.inventory.meta.ItemMeta;
  10. import org.bukkit.plugin.java.JavaPlugin;
  11.  
  12. public class Main extends JavaPlugin {
  13.  
  14. public void onEnable() {
  15. }
  16. public void onDisable() {
  17. }
  18.  
  19.  
  20. public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args)
  21. {
  22. // Command Executor Commands//
  23. Commands commands = new Commands();
  24. getCommand("Jouster").setExecutor(commands);
  25. getCommand("Tank").setExecutor(commands);
  26. getCommand("Swifter").setExecutor(commands);
  27. return false;
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement