Advertisement
imBEheAR

Untitled

May 10th, 2021
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. int random = new Random().nextInt(3);
  2. switch (random) {
  3. case 0:{
  4. Bukkit.broadcastMessage(" §d§lCASE§8 :: §fGracz §d" + player.getName() + " §fwylosowal §d6/3/3");
  5. ItemStack szostka = new ItemStack(Material.DIAMOND_PICKAXE);
  6. ItemMeta meta = szostka.getItemMeta();
  7. meta.setDisplayName(ChatColor.WHITE + "Kilof " + ChatColor.LIGHT_PURPLE + "6/3/3");
  8. meta.addEnchant(Enchantment.DIG_SPEED, 6, true);
  9. meta.addEnchant(Enchantment.LOOT_BONUS_BLOCKS, 3, true);
  10. meta.addEnchant(Enchantment.DURABILITY, 3, true);
  11. szostka.setItemMeta(meta);
  12. player.getInventory().addItem(szostka);
  13. break;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement