Advertisement
Guest User

Untitled

a guest
May 4th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1.         // Give armor
  2.         this.setBoots(Material.DIAMOND_BOOTS);
  3.         this.setChestplate(Material.IRON_CHESTPLATE);
  4.         this.setLeggings(Material.GOLD_LEGGINGS);
  5.         this.setHelmet(Material.LEATHER_HELMET);
  6.        
  7.         // Take off armor
  8.         this.setHelmet(Material.AIR);
  9.         this.setChestplate(Material.AIR);
  10.         this.setLeggings(Material.AIR);
  11.         this.setBoots(Material.AIR);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement