Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.71 KB | None | 0 0
  1.        private void boots() {
  2.            ItemStack boots = new ItemStack(Material.CHAINMAIL_BOOTS, 1);
  3.            ItemMeta meta2 = boots.getItemMeta();
  4.            meta2.setDisplayName(ChatColor.GRAY + "" + ChatColor.DARK_GRAY + ChatColor.BOLD + "N" + ChatColor.GRAY + "Boots");
  5.            meta2.setLore(Arrays.asList("Toto si vycraftis", "iba u nas!", "© Noman_SVK"));
  6.            boots.setItemMeta(meta2);
  7.            
  8.            ShapedRecipe hrecipe = new ShapedRecipe(boots);
  9.            hrecipe.shape(
  10.                            "   ",
  11.                            "@ @",
  12.                            "@ @");
  13.            hrecipe.setIngredient('@', Material.IRON_BLOCK);
  14.            Bukkit.getServer().addRecipe(hrecipe);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement