Advertisement
Guest User

Untitled

a guest
Dec 16th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. package Fristplugin;
  2.  
  3. import org.bukkit.plugin.java.JavaPlugin;
  4.  
  5. import Fristplugin.Command.FristpluginCommand;
  6. import net.md_5.bungee.api.ChatColor;
  7.  
  8. public class Main extends JavaPlugin {
  9.  
  10. @Override
  11. public void onEnable() {
  12. System.out.println(ChatColor.GREEN + "Fristplugin has been Enable");
  13. getCommand("test").setExecutor(new FristpluginCommand());
  14. }
  15.  
  16. @Override
  17. public void onDisable() {
  18. System.out.println(ChatColor.RED + "Fristplugin has been Disable");
  19.  
  20. }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement