Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. command /adminkit [<player>]:
  2. permission: adminkit.use
  3. permission message: Unknown Command. Type "/help" for help.
  4. trigger:
  5. set {_player} to arg 1
  6. set {_chestplate} to chainmail chestplate parsed as an item
  7. add "{Unbreakable:1}" to nbt of {_chestplate}
  8. set {_leggings} to chainmail leggings parsed as an item
  9. add "{Unbreakable:1}" to nbt of {_leggings}
  10. set {_boots} to iron boots parsed as an item
  11. add "{Unbreakable:1}" to nbt of {_boots}
  12. set {_sword} to iron sword parsed as an item
  13. add "{Unbreakable:1}" to nbt of {_sword}
  14. set {_bow} to bow parsed as an item
  15. add "{Unbreakable:1}" to nbt of {_bow}
  16. equip {_player} with 1 {_chestplate}
  17. equip {_player} with 1 {_leggings}
  18. equip {_player} with 1 {_boots}
  19. give {_player} 1 {_sword}
  20. give {_player} 1 {_bow}
  21. give {_player} 32 arrows
  22. message "&aDone!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement