Advertisement
Guest User

Bloodkill

a guest
Oct 6th, 2015
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. Skript Made By RedozMC And Axer_, idea from AmazingStrafing!
  2.  
  3.  
  4. options:
  5. p:&6&lAsterix &8&l>> &r
  6. c:&a
  7. a:&7
  8. h:&c
  9.  
  10. command /bloodkill <text>:
  11. description: Enable/Disable Bloodkill
  12. permission: skript.op
  13. trigger:
  14. if arg 1 is "enable":
  15. set {bloodkill} to true
  16. broadcast "{@p}{@a}BloodKill {@c}Enabled!"
  17. command "/baps note.pling"
  18. loop all players:
  19. set max health of loop-player to 20
  20. heal loop-player
  21. if arg 1 is "disable":
  22. set {bloodkill} to false
  23. broadcast "{@p}{@a}BloodKill {@h}Disabled!"
  24. command "/baps note.pling"
  25. loop all players:
  26. set max health of loop-player to 10
  27.  
  28.  
  29. on death:
  30. if {bloodkill} is true:
  31. set {health.%attacker%} to maximum health of attacker
  32. set maximum health of attacker to ({health.%attacker%}-1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement