Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. package de.pascal.skypvp;
  2.  
  3. import org.bukkit.Bukkit;
  4. import org.bukkit.plugin.PluginManager;
  5. import org.bukkit.plugin.java.JavaPlugin;
  6.  
  7. public class skypvp extends JavaPlugin {
  8.  
  9. public static String prefix = "§8➤ §6§lSkyPVP §8§l│";
  10.  
  11. @Override
  12. public void onEnable() {
  13. Bukkit.getConsoleSender().sendMessage("SkyPVP geladen!");
  14.  
  15. PluginManager pm = Bukkit.getServer().getPluginManager();
  16.  
  17. pm.registerEvents(new AddCoins(), this);
  18. pm.registerEvents(new JoinEvent(), this);
  19.  
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement