Advertisement
daipon0512

Untitled

Mar 9th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.32 KB | None | 0 0
  1. options:
  2. prefix: [KitPvP]
  3.  
  4. on respawn:
  5. clear player's inventory
  6. make console execute command "/effect %player% clear"
  7. teleport player to world's spawn point
  8. set slot 3 of player to chest named "職業を選ぶ"
  9. set slot 5 of player to emerald named "お店"
  10. stop
  11. command /kitpvp [<text>] [<text>]:
  12. permission:kitpvp.commands
  13. permission message:cこのコマンドを実行する権限がありません。
  14. trigger:
  15. if arg 1 is not set:
  16. send "&1KitPvP Commands:"
  17. send "&9/kitpvp setspawn &7- &bKitPvPのスポーン地点を設定します"
  18. send "&9/kitpvp spawn &7- &bKitPvPのスポーン地点にテレポートします"
  19. if arg 1 is "setspawn":
  20. set {kitpvp.spawn} to player's location
  21. send "{@prefix} スポーン地点を設定しました."
  22. if arg 1 is "spawn":
  23. teleport player to {kitpvp.spawn}
  24. command /kits [<text>]:
  25. trigger:
  26. if arg-1 is not set:
  27. wait 1 ticks
  28. open chest with 1 row named "職業の選択" to player
  29. wait 1 ticks
  30. format slot 2 of player with wood sword named "剣士" to close then run [execute player command "/kits kisi"]
  31. format slot 3 of player with obsidian named "タンク" to close then run [execute player command "/kits tanku"]
  32. format slot 4 of player with bow named "弓兵" to close then run [execute player command "/kits yumihei"]
  33. format slot 5 of player with flint and steel named "パイロ" to close then run [execute player command "/kits pairo"]
  34. if player doesn't have permission "ks.ansatusya":
  35. format slot 6 of player with red stained glass pane named "暗殺者" with lore "&cこのキットは購入することで使用可能になります" to be unstealable
  36. if player has permission "kits.ansatusya":
  37. format slot 6 of player with feather named "暗殺者" with lore "&aこのキットは購入済みです" to close then run [execute player command "/kits ansatusya"]
  38. if arg-1 is "kisi":
  39. make console execute command "/effect %player% clear"
  40. clear player's inventory
  41. set slot 0 of player to iron sword
  42. set slot 1 of player to 16 bread
  43. equip player with chainmail chestplate
  44. equip player with chainmail boots
  45. message "{@prefix} あなたは剣士を選択しました!"
  46. teleport player to {kitpvp.spawn}
  47. stop
  48. if arg-1 is "tanku":
  49. make console execute command "/effect %player% clear"
  50. clear player's inventory
  51. set slot 0 of player to wood sword
  52. set slot 1 of player to 16 bread
  53. equip player with iron chestplate
  54. equip player with iron leggings
  55. message "{@prefix} あなたはタンクを選択しました!"
  56. teleport player to {kitpvp.spawn}
  57. stop
  58. if arg-1 is "yumihei":
  59. make console execute command "/effect %player% clear"
  60. clear player's inventory
  61. set slot 0 of player to bow
  62. set slot 1 of player to 16 bread
  63. set slot 2 of player to 64 arrows
  64. equip player with leather helmet
  65. equip player with chainmail chestplate
  66. message "{@prefix} あなたは弓兵を選択しました!"
  67. teleport player to {kitpvp.spawn}
  68. stop
  69. if arg-1 is "pairo":
  70. make console execute command "/effect %player% clear"
  71. clear player's inventory
  72. set slot 0 of player to stone sword
  73. set slot 1 of player to blaze rod of fire aspect 1
  74. set slot 2 of player to 16 bread
  75. equip player with leather chestplate
  76. equip player with iron leggings
  77. message "{@prefix} あなたはパイロを選択しました!"
  78. teleport player to {kitpvp.spawn}
  79. stop
  80. if arg-1 is "ansatusya":
  81. if player has permission "ks.ansatusya":
  82. make console execute command "/effect %player% clear"
  83. clear player's inventory
  84. set slot 0 of player to stone sword
  85. set slot 1 of player to 1 feather named "&aダッシュ"
  86. set slot 2 of player to 16 bread
  87. equip player with leather chestplate
  88. equip player with leather leggings
  89. message "{@prefix} あなたは暗殺者を選択しました!"
  90. teleport player to {kitpvp.spawn}
  91. stop
  92. on right click holding feather:
  93. name of held item contains "&aダッシュ"
  94. push the player forwards at speed 1.5
  95. remove 1 feather from player's inventory
  96. on right click holding chest:
  97. name of held item contains "職業を選ぶ"
  98. make player execute command "/kits"
  99. on right click holding emerald:
  100. name of held item contains "お店"
  101. make player execute command "/store"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement