Advertisement
dai_pon

Untitled

May 11th, 2018
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. on rightclick on sign:
  2. if line 4 is ".":
  3. if {money.%player%} is greater than or equal to 100:
  4. execute console command "menu grab %player% money100"
  5. send "&9》 &a100Pointに交換しました。"
  6. set {_location} to location of player
  7. play sound "UI_BUTTON_CLICK" with volume 1 with pitch 1 at {_location}
  8. subtract 100 from {money.%player%}
  9. else:
  10. send "&9》 &aお金が足りていません。"
  11. set {_location} to location of player
  12. play sound "UI_BUTTON_CLICK" with volume 1 with pitch 1 at {_location}
  13.  
  14. on rightclick on sign:
  15. if line 4 is "..":
  16. if player is holding a slimeball:
  17. send "&9》 &a100Pointを売却しました。"
  18. set {_location} to location of player
  19. play sound "UI_BUTTON_CLICK" with volume 1 with pitch 1 at {_location}
  20. add 100 to {money.%player%}
  21. remove 1 of player's held item from the player's inventory
  22. else:
  23. send "&9》 &aアイテムを持っていません。"
  24. set {_location} to location of player
  25. play sound "UI_BUTTON_CLICK" with volume 1 with pitch 1 at {_location}
  26.  
  27. on rightclick on sign:
  28. if line 4 is "....":
  29. if {money.%player%} is greater than or equal to 1000:
  30. execute console command "menu grab %player% money1000"
  31. send "&9》 &a1000Pointに交換しました。"
  32. set {_location} to location of player
  33. play sound "UI_BUTTON_CLICK" with volume 1 with pitch 1 at {_location}
  34. subtract 1000 from {money.%player%}
  35. else:
  36. send "&9》 &aお金が足りていません。"
  37. set {_location} to location of player
  38. play sound "UI_BUTTON_CLICK" with volume 1 with pitch 1 at {_location}
  39.  
  40. on rightclick on sign:
  41. if line 4 is "...":
  42. if player is holding a slime_block:
  43. send "&9》 &a1000Pointを売却しました。"
  44. set {_location} to location of player
  45. play sound "UI_BUTTON_CLICK" with volume 1 with pitch 1 at {_location}
  46. add 1000 to {money.%player%}
  47. remove 1 of player's held item from the player's inventory
  48. else:
  49. send "&9》 &aアイテムを持っていません。"
  50. set {_location} to location of player
  51. play sound "UI_BUTTON_CLICK" with volume 1 with pitch 1 at {_location}
  52.  
  53. on rightclick on sign:
  54. if line 4 is ".....":
  55. if {zpoint.%player%} is greater than or equal to 1:
  56. execute console command "menu grab %player% zpoint"
  57. send "&9》 &a1Zpointに交換しました。"
  58. set {_location} to location of player
  59. play sound "UI_BUTTON_CLICK" with volume 1 with pitch 1 at {_location}
  60. subtract 1 from {zpoint.%player%}
  61. else:
  62. send "&9》 &aポイントが足りていません。"
  63. set {_location} to location of player
  64. play sound "UI_BUTTON_CLICK" with volume 1 with pitch 1 at {_location}
  65.  
  66. on rightclick on sign:
  67. if line 4 is "......":
  68. if player is holding a paper:
  69. send "&9》 &a1ZPointを売却しました。"
  70. set {_location} to location of player
  71. play sound "UI_BUTTON_CLICK" with volume 1 with pitch 1 at {_location}
  72. add 1 to {zpoint.%player%}
  73. remove 1 of player's held item from the player's inventory
  74. else:
  75. send "&9》 &aアイテムを持っていません。"
  76. set {_location} to location of player
  77. play sound "UI_BUTTON_CLICK" with volume 1 with pitch 1 at {_location}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement