Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. public static final ItemStack TOWERS = new ItemStack(Material.ARROW, 1) {
  2.         {
  3.             ItemMeta meta = this.getItemMeta();
  4.             meta.setDisplayName(ChatColor.YELLOW + "Towers");
  5.             List<String> l = new ArrayList<String>();
  6.             l.add(ChatColor.GRAY + "" + ChatColor.ITALIC + "Right click to go pick a tower to build");
  7.             meta.setLore(l);
  8.             this.setItemMeta(meta);
  9.         }
  10.     };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement