Advertisement
taktie0304

Untitled

Jun 2nd, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. on rightclick holding a iron horse armor:
  2. name of held item contains "1000コイン購入券":
  3. if the 1st line of the tool's lore is "クリックでお金が増えるよ":
  4. remove event-item from player
  5. add 1000 to {coin.%uuid of player%}
  6. send "&a1000コイン追加されました!"
  7. name of held item contains "10000コイン購入券":
  8. if the 1st line of the tool's lore is "クリックでお金が増えるよ":
  9. remove event-item from player
  10. add 10000 to {coin.%uuid of player%}
  11. send "&a10000コイン追加されました!"
  12. name of held item contains "100000コイン購入券":
  13. if the 1st line of the tool's lore is "クリックでお金が増えるよ":
  14. remove event-item from player
  15. add 100000 to {coin.%uuid of player%}
  16. send "&a100000コイン追加されました!"
  17. name of held item contains "1000000コイン購入券":
  18. if the 1st line of the tool's lore is "クリックでお金が増えるよ":
  19. remove event-item from player
  20. add 1000000 to {coin.%uuid of player%}
  21. send "&a1000000コイン追加されました!"
  22. name of held item contains "ブースター購入券":
  23. if the 1st line of the tool's lore is "クリックで採掘速度上昇するよ":
  24. remove event-item from player
  25. command "effect %player% 3 600 9"
  26. send "&a採掘速度が10分間上昇しました"
  27. name of held item contains "全員ブースター購入券":
  28. if the 1st line of the tool's lore is "クリックで全員が採掘速度上昇するよ":
  29. remove event-item from player
  30. command "effect @a 3 600 14"
  31. broadcast "&a%player%さんによって採掘速度が全員10分間上昇しました"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement