Guest User

Untitled

a guest
Jan 7th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. package me.CounterCraft.Particle;
  2.  
  3. import org.bukkit.plugin.java.JavaPlugin;
  4.  
  5. import net.md_5.bungee.api.ChatColor;
  6.  
  7. public class ParticlesBaseClass extends JavaPlugin
  8. {
  9.  
  10. private Commands commands = new Commands();
  11.  
  12. public void onEnable()
  13. {
  14. getServer().getConsoleSender().sendMessage(ChatColor.GREEN + "Reinforce Plugin ENABLED!");
  15. getCommand(commands.cmd1).setExecutor(commands);
  16. }
  17.  
  18. public void onDisable()
  19. {
  20. getServer().getConsoleSender().sendMessage(ChatColor.GREEN + "Reinforce Plugin DISABLED!");
  21. }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment