Guest User

Main.java

a guest
Jul 15th, 2018
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. public final class TestingPlugin extends JavaPlugin
  2. {
  3.     @Override
  4.     public void onEnable()
  5.     {
  6.         //You've got to do this.
  7.         PluginCommand cmd = this.getCommand("colour");
  8.         cmd.setExecutor(new ColourCommand());
  9.         cmd.setTabCompleter(new ColourTab());
  10.     }
  11. }
Add Comment
Please, Sign In to add comment