Advertisement
Guest User

zmbkit

a guest
Apr 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. on damage:
  2. size of {zombie.%player%} is 1 to %attacker%:
  3. execute console command "effect %player% minecraft:slowness 2 10"
  4. execute console command "effect %player% minecraft:strength -1 5"
  5. execute console command "effect %player% minecraft:blindness 1 1"
  6.  
  7. command /zmbkit set <player>:
  8. permission: skript.zombie.kit
  9. trigger:
  10. if arg 1 is @a:
  11. set {zombie.%player%} to 1 of all player
  12. message "&6全員&bをゾンビ化しました"
  13. if arg 1 is @r:
  14. set {zombie.%player%} to 1 of random player
  15. else:
  16. set {zombie.%player%} to 1 of arg-1
  17. message "&6%arg 1%&bをゾンビ化しました"
  18.  
  19. command /zmbkit remove <player>:
  20. permission: skript.zombie.kit
  21. trigger:
  22. set {zombie.%player%} to 0 of arg-2
  23. message "&6%arg 2%&bを人間にしました"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement