Advertisement
natopotato54

Untitled

Aug 17th, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. #Small blood diamond skript I made.
  2. #You can edit it to your liking just change the 1/2 to what ever amount of heats you want.
  3. command /blooddiamonds <text>:
  4. description: BloodDiamonds Enable:Disable:Toggle
  5. usage: /blooddiamonds <enable:disable:toggle>
  6. permission: cutclean.admin
  7. trigger:
  8. if arg 1 is "enable":
  9. set {blooddiamonds} to true
  10. message "&cBloodDiamonds Enabled!"
  11. if arg 1 is "disable":
  12. set {blooddiamonds} to false
  13. message "&cBloodDiamonds Disabled!"
  14. if arg 1 is "toggle":
  15. if {blooddiamonds} is true:
  16. set {blooddiamonds} to false
  17. message "&cBloodDiamonds Disabled!"
  18. stop
  19. if {blooddiamonds} is false:
  20. set {blooddiamonds} to true
  21. message "&cBloodDiamonds Enabled!"
  22. stop
  23.  
  24. on mine of diamond ore:
  25. if {blooddiamonds} is true:
  26. set block to air
  27. drop 1 diamond
  28. damage player by 1/2 hearts
  29. cancel the event
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement