Advertisement
Guest User

Untitled

a guest
Jun 4th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function Armure(c: color, p: player):
  2. dye {_p}'s helmet {_c}
  3. dye {_p}'s leggings {_c}
  4. dye {_p}'s chestplate {_c}
  5. dye {_p}'s boots {_c}
  6.  
  7. function Color(c: color, p: player):
  8. set helmet of {_p} to leather helmet
  9. set chestplate of {_p} to leather chestplate
  10. set leggings of {_p} to leather leggings
  11. set boots of {_p} to leather boots
  12.  
  13.  
  14. command /color <color>:
  15. trigger:
  16. Armure(yellow, player)
  17. Color(argument 1, player)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement