Advertisement
Itsyuumello2

Untitled

Dec 11th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.74 KB | None | 0 0
  1. on right click:
  2. player's tool is emerald named "&aショップ &7(right click)"
  3. open chest with 5 row named "&aショップ" to player
  4. set slot 0 of player's current inventory to nether star named "&aステータス" with lore "&fYour Coins: &6%{coins.%player%}%" and "&fYour Cash: &e%{cash.%player%}%"
  5. set slot 11 of player's current inventory to bow named "&aキット & パーク"
  6. set slot 15 of player's current inventory to chest named "&aコスチュームショップ"
  7. set slot 31 of player's current inventory to barrier named "&c閉じる"
  8. player's tool is player's skull named "&aプロファイル &7(right click)"
  9. open chest with 5 row named "&aプロファイル" to player
  10. set slot 31 of player's current inventory to barrier named "&c閉じる"
  11. player's tool is chest named "&aコスチューム &7(right click)"
  12. open chest with 5 row named "&aコスチューム" to player
  13. set slot 11 of player's current inventory to bow named "&aキルエフェクト"
  14. set slot 13 of player's current inventory to bow named "&a死亡サウンド"
  15. set slot 15 of player's current inventory to bow named "&aビクトリーダンス"
  16. set slot 31 of player's current inventory to barrier named "&c閉じる"
  17.  
  18. on inventory click:
  19. if name of clicked item is "&c閉じる":
  20. close player's inventory
  21. if name of clicked item is "&aキット & パーク":
  22. open chest with 5 row named "&aキット & パーク ショップ" to player
  23. set slot 0 of player's current inventory to nether star named "&aステータス" with lore "&1" and "&fYour Coins: &6%{coins.%player%}%" and "&2"
  24. set slot 11 of player's current inventory to bow named "&aキット"
  25. set slot 15 of player's current inventory to eye of ender named "&aパーク"
  26. set slot 31 of player's current inventory to barrier named "&c閉じる"
  27. if name of clicked item is "&aコスチュームショップ":
  28. open chest with 5 row named "&aコスチュームショップ" to player
  29. set slot 0 of player's current inventory to nether star named "&aステータス" with lore "&1" and "&fYour Cash: &e%{cash.%player%}%" and "&2"
  30. set slot 11 of player's current inventory to slimeball named "&aキルエフェクトショップ"
  31. set slot 13 of player's current inventory to jukebox named "&a死亡サウンドショップ"
  32. set slot 15 of player's current inventory to dragon egg named "&aビクトリーダンスショップ"
  33. set slot 31 of player's current inventory to barrier named "&c閉じる"
  34. if name of clicked item is "&aキルエフェクトショップ":
  35. open chest with 5 row named "&aキルエフェクトショップ" to player
  36. set slot 0 of player's current inventory to nether star named "&aステータス" with lore "&1" and "&fYour Cash: &e%{cash.%player%}%" and "&2"
  37. set slot 11 of player's current inventory to glass named "&c雷" with lore "&1" and "&7このキルエフェクトは" and "&7倒したプレイヤーのところに雷を落とします。" and "&2" and "&7Price: &e800" and "&3" and "&cLOCKED"
  38. if {lightningbolt.%player%} is true:
  39. set slot 11 of player's current inventory to glass named "&a雷" with lore "&1" and "&7このキルエフェクトは" and "&7倒したプレイヤーのところに雷を落とします。" and "&2" and "&7Price: &e800" and "&3" and "&aUNLOCKED"
  40. if name of clicked item is "&c雷":
  41. if {cash.%player%} >= 800:
  42. send "&6雷 &aのキルエフェクトを購入しました!"
  43. execute console command "/playsound block.note.pling master %player% ~ ~ ~ 2 2 1"
  44. set {lightningbolt.%player%} to true
  45. remove 800 from {cash.%player%}
  46. stop
  47. else:
  48. send "&cキャッシュが不足しています。"
  49. execute console command "/playsound entity.endermen.teleport master %player% ~ ~ ~ 2 0.5 1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement