Advertisement
FrostedWeFall

death

Oct 13th, 2017
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. # Damage Indicator #
  2.  
  3. options:
  4. actionbar: &6&l%victim% &a&l%health of victim% &4&l
  5.  
  6. # Death Messages #
  7.  
  8. options:
  9. deathfall: &e%player% &chit the ground too hard
  10. deathbyplayer: &e%player% &cwas slain by &e%attacker% &6[%health of attacker%]
  11. deathbyzombie: &e%player% &cwas slain by &ezombie
  12. deathbycreeper: &e%player% &cwas slain by &ecreeper
  13. deathbyskeleton: &e%player% &cwas slain by &eskeleton
  14. deathbyspider: &e%player% &cwas slain by &espider
  15. deathbyenderman: &e%player% &cwas slain by &eenderman
  16. deathbydrown: &e%player% &chas drowned
  17. deathbylava: &e%player% &chas burned in lava
  18.  
  19. # Events #
  20. # No Edit #
  21. # Original Plugin of @VoltrixPvP #
  22. # Follow me: @JuanxooG #
  23. # Thanks for download! #
  24.  
  25. # Damage Event #
  26.  
  27. on damage:
  28. set action bar of attacker to "{@actionbar}"
  29. # Death Events #
  30.  
  31. on death of player:
  32. {started} is true
  33. set death message to ""
  34. damage was caused by fall
  35. broadcast "{@deathfall}"
  36. on death of player:
  37. {started} is true
  38. set death message to ""
  39. attacker is a player
  40. broadcast "{@deathbyplayer}"
  41. on death of player:
  42. {started} is true
  43. set death message to ""
  44. attacker is a zombie
  45. broadcast "{@deathbyzombie}"
  46. on death of player:
  47. {started} is true
  48. set death message to ""
  49. attacker is a creeper
  50. broadcast "{@deathbycreeper}"
  51. on death of player:
  52. {started} is true
  53. set death message to ""
  54. attacker is a skeleton
  55. broadcast "{@deathbyskeleton}"
  56. on death of player:
  57. {started} is true
  58. set death message to ""
  59. attacker is a spider
  60. broadcast "{@deathbyspider}"
  61. on death of player:
  62. {started} is true
  63. set death message to ""
  64. attacker is a enderman
  65. broadcast "{@deathbyenderman}"
  66. on death of player:
  67. {started} is true
  68. set death message to ""
  69. damage was caused by drowning
  70. broadcast "{@deathbydrown}"
  71. on death of player:
  72. {started} is true
  73. set death message to ""
  74. damage was caused by lava
  75. broadcast "{@deathbylava}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement