Guest User

BareBones (Working) skript

a guest
Aug 26th, 2015
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. options:
  2. P: &0[&3Bare&2Bones&0]&b
  3.  
  4. command /BareBones [<text>]:
  5. permission: skript.op
  6. usage: /DeathOres <enable:disable:drops>
  7. trigger:
  8. if arg-1 is "on" or "enable":
  9. set {bb} to true
  10. send "{@P} BareBones &8Enabled&7!"
  11. if arg-1 is "off" or "disable":
  12. set {bb} to false
  13. send "{@P} BareBones &8Disabled&7!"
  14.  
  15. on mine of iron ore:
  16. {bb} is true
  17. cancel event
  18. set the event-block to air
  19. drop 1 iron ingot at the event-block
  20.  
  21. on mine of gold ore:
  22. {bb} is true
  23. cancel event
  24. set the event-block to air
  25. drop 1 iron ingot at the event-block
  26.  
  27. on mine of diamond ore:
  28. {bb} is true
  29. cancel event
  30. set the event-block to air
  31. drop 1 iron ingot at the event-block
  32.  
  33. on death of player:
  34. if {bb} is true:
  35. victim is player
  36. drop 1 diamond at victim
  37. drop 1 golden apple at victim
  38. drop 32 arrows at victim
  39. drop 2 string at victim
  40.  
  41. on death of pig:
  42. {bb} is true
  43. clear drops
  44. drop 3 cooked porkchop at player
  45.  
  46. on death of cow:
  47. {bb} is true
  48. clear drops
  49. drop 3 steak at player
  50. drop 2 leather at player
  51.  
  52. on death of chicken:
  53. {bb} is true
  54. drop 3 cooked chicken at player
  55. drop 2 feathers at player
Advertisement
Add Comment
Please, Sign In to add comment