Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. package me.Draconium;
  2.  
  3. import org.bukkit.command.Command;
  4. import org.bukkit.command.CommandSender;
  5. import org.bukkit.entity.Player;
  6. import org.bukkit.plugin.java.JavaPlugin;
  7.  
  8. public class Test extends JavaPlugin{
  9.  
  10. @Override
  11. public void onEnable() {
  12. new PlayerListener(this);
  13. }
  14.  
  15. @Override
  16. public void onDisable() {
  17.  
  18. }
  19.  
  20. public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
  21.  
  22. if (cmd.getName().equalsIgnoreCase("tutorial") && sender instanceof Player) {
  23.  
  24. Player player = (Player) sender;
  25.  
  26. player.sendMessage("§8§n----------------------------------------------------");
  27. player.sendMessage("§5&l TUTORIAL");
  28. player.sendMessage("");
  29. player.sendMessage("§d Welcome to §5§lMiners§d§lMC§d! Thank you for playing! First off, you want to go to the mine and begin mining ores. You will notice that you will begin to get §5§lExperience §7(XP)§d. This XP is how you level up. If you look at your action bar, you will see how many Experience Points you will need to level up! You will automatically level up.");
  30. player.sendMessage("");
  31. player.sendMessage("§d After you have mined all of your ores, sell it to the mining merchant. He will give you money. After you get the money, open up the menu. Once in the menu, click on crate keys, and purchase your first crate key! You will get Upgrade Crystals to upgrade your pickaxe!");
  32. player.sendMessage("");
  33. player.sendMessage("§d Once you collect 10 Wooden Upgrade Crystals, visit the §6§lWooden Wizard§d! He will exchange your old pickaxe for a leveled up one! The max level for a pickaxe is 10. Once you get a max wooden pickaxe, you can exchange it for a stone pickaxe, which you can then use to mine other ores such as iron and lapis. Your end goal is to reach Lvl. 100 and get a max diamond pickaxe! Can you get there?");
  34. player.sendMessage("§8§n----------------------------------------------------");
  35. }
  36. return false;
  37. }
  38.  
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement