Advertisement
Silo32

Cutclean.sk

Jul 2nd, 2023
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. command /cutclean <text=help>:
  2. aliases: /kutklean, /cc
  3. permission: skript.op
  4. trigger:
  5. if arg 1 is "enable":
  6. set {cc} to true
  7. message "&7[&eCutClean&7] &eCutClean Enabled!"
  8. if arg 1 is "disable":
  9. set {cc} to false
  10. message "&7[&eCutClean&7] &eCutClean Disabled!"
  11. if arg 1 is "toggle":
  12. if {cc} is true:
  13. set {cc} to false
  14. message "&7[&eCutClean&7] &eCutClean Disabled!"
  15. stop
  16. if {cc} is false:
  17. set {cc} to true
  18. message "&7[&eCutClean&7] &eCutClean Enabled!"
  19. stop
  20. if arg 1 is "help":
  21. message "&7[&eCutClean&7]&6/CutClean <enable/disable/toggle>"
  22.  
  23. on mine of iron ore or deepslate iron ore:
  24. if {cc} is true:
  25. cancel the event
  26. damage player's tool by 1
  27. set event-block to air
  28. if player has space for (1 of iron ingot):
  29. give player (1 of iron ingot)
  30. else:
  31. drop (1 of iron ingot) at (location 0.5 above player)
  32. drop 1 xp at player
  33.  
  34. on mine:
  35. if event-block is gold ore or deepslate gold ore:
  36. if {cc} is true:
  37. cancel the event
  38. damage player's tool by 1
  39. set event-block to air
  40. if player has space for (1 of gold ingot):
  41. give player (1 of gold ingot)
  42. else:
  43. drop (1 of gold ingot) at (location 0.5 above player)
  44. drop 1 xp at player
  45.  
  46. on death of a pig:
  47. if {cc} is true:
  48. clear drops
  49. drop 3 cooked porkchop at the victim
  50. drop 1 xp at the victim
  51. else:
  52. stop
  53.  
  54. on death of a cow:
  55. {cc} is true
  56. clear drops
  57. drop 3 steak at the victim
  58. drop 1 leather at the victim
  59. drop 1 xp at the victim
  60.  
  61. on death of a sheep:
  62. {cc} is true
  63. clear drops
  64. drop 3 cooked mutton at the victim
  65. drop 1 xp at the victim
  66.  
  67.  
  68. on death of a chicken:
  69. {cc} is true
  70. clear drops
  71. drop 3 cooked chicken at the victim
  72. drop 2 feathers at the victim
  73. drop 1 xp at the victim
  74.  
  75. on death of a spider:
  76. {cc} is true
  77. clear drops
  78. drop 2 string at the victim
  79. chance of 30%:
  80. drop 1 spider eye at the victim
  81. drop 4 xp at the victim
  82.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement