Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. publci class SkillsMenu {
  2.  
  3. public PersonalInventory getInventory(String name) {
  4. PersonalInventory inventory = new PersonalInventory();
  5.  
  6. CustomItem item = CustomItem.builder(Material.GOLD_BOOTS).setName(name).setLore("&aAl recibir cualquier tipo de daño recibes",
  7. "&bVelocidad III &7(4 segundos");
  8. inventory.setIcon(0, item);
  9.  
  10. return inventory;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement