CREAMPAN0408

Untitled

Jan 21st, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. options:
  2. other: %player%が%attacker%に倒されました
  3. potion: &f
  4. fall: &f%player%が足首を挫きましたぁぁぁぁ
  5. blockexplosion: &f
  6. entityexplosion: &f
  7. lava: &f%player%が燃え尽きました
  8. drown: &f
  9.  
  10. # %player% - playername
  11. # %attacker% - attackername
  12. # %attacker's health% - attackerhealth
  13.  
  14. on death of player:
  15. if arg-1 is not set:
  16. if victim is player:
  17. set the death message to "{@other}"
  18. if damage was caused by attack:
  19. if victim is player:
  20. set the death message to "&c%player%&7&l<< &f%attacker%'s HP &e&l%attacker's health%"
  21. if damage was caused by potion:
  22. if victim is player:
  23. set the death message to "{@potion}"
  24. if damage was caused by fall:
  25. if victim is player:
  26. set the death message to "{@fall}"
  27. if damage was caused by block explosion:
  28. if victim is player:
  29. set the death message to "{@blockexplosion}"
  30. if damage was caused by entity explosion:
  31. if victim is player:
  32. set the death message to "{@entityexplosion}"
  33. if damage was caused by lava:
  34. if victim is player:
  35. set the death message to "{@lava}"
  36. if damage was caused by drown:
  37. if victim is player:
  38. set the death message to "{@drown}"
Advertisement
Add Comment
Please, Sign In to add comment