Advertisement
FrostedWeFall

Untitled

Oct 24th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. # ___ ___ ___ ___ ___
  2. # /\ \ /\ \ /\ \ /\__\ /\ \
  3. # \:\ \ /::\ \ /::\ \ /:/ / /::\ \
  4. # \:\ \ /:/\:\ \ /:/\:\ \ /:/ / /:/\ \ \
  5. # /::\ \ /:/ \:\ \ /:/ \:\ \ /:/ / _\:\~\ \ \
  6. # /:/\:\__\ /:/__/ \:\__\ /:/__/ \:\__\ /:/__/ /\ \:\ \ \__\
  7. # /:/ \/__/ \:\ \ /:/ / \:\ \ /:/ / \:\ \ \:\ \:\ \/__/
  8. # /:/ / \:\ /:/ / \:\ /:/ / \:\ \ \:\ \:\__\
  9. # \/__/ \:\/:/ / \:\/:/ / \:\ \ \:\/:/ /
  10. # \::/ / \::/ / \:\__\ \::/ /
  11. # \/__/ \/__/ \/__/ \/__/
  12.  
  13. options:
  14. name: &7Tools &8ยป
  15.  
  16. successfully.renamed: &aItem successfully renamed !
  17. successfully.renamed.lore: &aItem's lore successfully set to %colored arg 4%
  18. successfully.removed: &aName successfully cleared !
  19. successfully.removed.lore: &aItem's lore successfully cleared.
  20. need.item.inHand: &eYou need to hold an item in your hand !
  21.  
  22. help.1: &b---=== &6Tools Help &b===---
  23. help.2: &6ยป &b/tools lore <line> set <lore>
  24. help.3: &6ยป &b/tools lore <line> remove
  25. help.4: &6ยป &b/tools name <new name>
  26.  
  27. command /tools [<text>] [<number>] [<text>] [<text>]:
  28. aliases: /t
  29. trigger:
  30. if arg 1 is "lore":
  31. if number arg is set:
  32. if arg 3 is "set":
  33. set line number arg of lore of player's tool to "%colored arg 4%"
  34. message "{@name} {@successfully.renamed.lore}"
  35. else if arg 3 is "remove":
  36. set line number arg of lore of player's tool to ""
  37. message "{@name} {@successfully.removed.lore}"
  38. if arg 1 is "name":
  39. set name of player's tool to "%colored arg 3% %colored arg 4%"
  40. message "{@name} {@successfully.renamed}"
  41. if arg 1 is "help":
  42. message " {@help.1}"
  43. message ""
  44. message "{@help.2}"
  45. message "{@help.3}"
  46. message "{@help.4}"
  47. message ""
  48. if player is holding air:
  49. stop
  50. send "{@name} {@need.item.inHand}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement