Advertisement
daipon0512

Untitled

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