Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. #==============================================#
  2. #= Stabbinq's Tripleores with Cutclean Skript =#
  3. #==============================================#
  4.  
  5. #===========#
  6. #= Command =#
  7. #===========#
  8.  
  9. command /tripleores <text>:
  10. description: Tripleores Enable:Disable
  11. usage: /tripleores <enable:disable>
  12. permission: tripleores.perm
  13. trigger:
  14. if arg 1 is "enable":
  15. set {tripleores} to true
  16. message "&c&lTripleores Enabled!"
  17. if arg 1 is "disable":
  18. set {tripleores} to false
  19. message "&c&lTriplesores Disabled!"
  20.  
  21. #==========#
  22. #= Mining =#
  23. #==========#
  24.  
  25. on mine of iron ore:
  26. if {tripleores} is true:
  27. cancel the event
  28. set block to air
  29. drop 3 iron ingot at the event-block
  30. spawn 3 experience orb at the event-block
  31.  
  32. on mine of gold ore:
  33. if {tripleores} is true:
  34. cancel the event
  35. set block to air
  36. drop 3 gold ingot at the event-block
  37. spawn 3 experience orb at the event-block
  38.  
  39. on mine of diamond ore:
  40. if {tripleores} is true:
  41. cancel the event
  42. set block to air
  43. drop 3 diamond at the event-block
  44. spawn 3 experience orb at the event-block
  45.  
  46. on mine of coal ore:
  47. if {tripleores} is true:
  48. cancel the event
  49. set block to air
  50. drop 3 coal at the event-block
  51. spawn 3 experience orb at the event-block
  52.  
  53. on mine of emerald ore:
  54. if {tripleores} is true:
  55. drop 3 emerald at event-player
  56. cancel the event
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement