dai_pon

Untitled

Jun 3rd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.35 KB | None | 0 0
  1. on right click:
  2. name of held item contains "&b&l速度上昇指令"
  3. execute console command "effect @a[score_zombie_min=1] 1 15 2"
  4. execute console command "scoreboard players tag %player% add sound"
  5. broadcast "&9》 &a親ゾンビの指令で全感染者の移動力が一時的に強化された!"
  6. remove 1 of player's held item from the player's inventory
  7.  
  8. on right click:
  9. name of held item contains "&a&l跳躍上昇指令"
  10. execute console command "effect @a[score_zombie_min=1] 8 15 3"
  11. execute console command "scoreboard players tag %player% add sound"
  12. broadcast "&9》 &a親ゾンビの指令で全感染者の跳躍力が一時的に強化された!"
  13. remove 1 of player's held item from the player's inventory
  14.  
  15. on right click:
  16. name of held item contains "&c&l肉体強化指令&6(自分のみ)"
  17. execute console command "effect %player% 11 3 5"
  18. execute console command "scoreboard players tag %player% add sound"
  19. broadcast "&9》 &a親ゾンビの指令で親ゾンビが3秒間無敵になった!"
  20. remove 1 of player's held item from the player's inventory
  21.  
  22. on right click:
  23. name of held item contains "&d&l方向転換指令"
  24. execute console command "tp @a[score_human_min=1] ~ ~ ~ 0 -90"
  25. execute console command "scoreboard players tag %player% add sound"
  26. broadcast "&9》 &a親ゾンビの指令で生存者が上を向いてしまった!!"
  27. remove 1 of player's held item from the player's inventory
  28.  
  29. on right click:
  30. name of held item contains "&9&l生存者索敵指令"
  31. execute console command "effect @a[score_human_min=1] 24 10 1"
  32. execute console command "scoreboard players tag %player% add sound"
  33. broadcast "&9》 &a親ゾンビの指令で生存者の位置が一定時間映し出された!"
  34. remove 1 of player's held item from the player's inventory
  35.  
  36. on right click:
  37. name of held item contains "&9&l速度低下指令"
  38. execute console command "effect @a[score_human_min=1] 2 11 3"
  39. execute console command "scoreboard players tag %player% add sound"
  40. broadcast "&9》 &a親ゾンビの指令で生存者の移動速度が一時的に低下した!"
  41. remove 1 of player's held item from the player's inventory
  42.  
  43. on right click:
  44. name of held item contains "&5&l暗転指令"
  45. execute console command "effect @a[score_human_min=1] 15 6 2"
  46. execute console command "scoreboard players tag %player% add sound"
  47. broadcast "&9》 &a親ゾンビの指令で生存者が一定時間盲目になった!"
  48. remove 1 of player's held item from the player's inventory
  49.  
  50. on right click:
  51. name of held item contains "&6&l万能指令"
  52. execute console command "effect @a[score_zombie_min=1] 1 20 0"
  53. execute console command "effect @a[score_zombie_min=1] 8 20 0"
  54. execute console command "effect @a[score_zombie_min=1] 10 20 1"
  55. execute console command "effect @a[score_zombie_min=1] 11 20 1"
  56. execute console command "scoreboard players tag %player% add sound"
  57. broadcast "&9》 &a親ゾンビの指令で感染者の能力が一定時間向上した!"
  58. remove 1 of player's held item from the player's inventory
  59.  
  60. on right click:
  61. name of held item contains "&b&l体力増強指令"
  62. execute console command "effect @a[score_zombie_min=1] 21 15 9"
  63. execute console command "effect @a[score_zombie_min=1] 10 15 1"
  64. execute console command "effect @a[score_zombie_min=1] 6 15 5"
  65. execute console command "scoreboard players tag %player% add sound"
  66. broadcast "&9》 &a親ゾンビの指令で感染者の体力が大幅に一定時間向上した!"
  67. remove 1 of player's held item from the player's inventory
  68.  
  69. on right click:
  70. name of held item contains "&7&l捕縛指令"
  71. execute console command "effect @p[score_human_min=1] 15 10 2"
  72. execute console command "effect @p[score_human_min=1] 2 10 50"
  73. execute console command "scoreboard players tag %player% add sound"
  74. broadcast "&9》 &a親ゾンビの指令で一番近い生存者が移動不可になった!"
  75. remove 1 of player's held item from the player's inventory
  76.  
  77. command /order:
  78. permission: sk.order
  79. trigger:
  80. loop 3 times:
  81. set {_order} to a random integer between 1 and 10
  82. if {_order} is equal to 1:
  83. execute console command "menu grab %player% order1"
  84. else if {_order} is equal to 2:
  85. execute console command "menu grab %player% order2"
  86. else if {_order} is equal to 3:
  87. execute console command "menu grab %player% order3"
  88. else if {_order} is equal to 4:
  89. execute console command "menu grab %player% order4"
  90. else if {_order} is equal to 5:
  91. execute console command "menu grab %player% order5"
  92. else if {_order} is equal to 6:
  93. execute console command "menu grab %player% order6"
  94. else if {_order} is equal to 7:
  95. execute console command "menu grab %player% order7"
  96. else if {_order} is equal to 8:
  97. execute console command "menu grab %player% order8"
  98. else if {_order} is equal to 9:
  99. execute console command "menu grab %player% order9"
  100. else:
  101. execute console command "menu grab %player% order10"
Add Comment
Please, Sign In to add comment