Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. #==============#
  2. #= TO with CC =#
  3. #==============#
  4.  
  5. #============#
  6. #= Commands =#
  7. #============#
  8. command /tripleores <text>:
  9. description: tripleores Enable:Disable
  10. usage: /cutclean <enable:disable>
  11. permission: tocc.stabbinq
  12. trigger:
  13. if arg 1 is "enable":
  14. set {tripleores} to true
  15. message "&c&lTripleores Enabled!"
  16. if arg 1 is "disabled":
  17. set {tripleores} to false
  18. message "&c&lTripleores Disabled!"
  19. #==========#
  20. #= Mining =#
  21. #==========#
  22. on mine of gold ore:
  23. if {tripleores} is true:
  24. cancel the event
  25. set block to air
  26. drop 3 gold ingot
  27.  
  28. on mine of iron ore:
  29. if {tripleores} is true:
  30. cancel the event
  31. set block to air
  32. drop 3 iron ingot
  33.  
  34. on mine of diamond ore:
  35. if {tripleores} is true:
  36. cancel the event
  37. set block to air
  38. drop 3 diamond
  39.  
  40. on mine of emerald ore:
  41. if {tripleores} is true:
  42. cancel the event
  43. set block to air
  44. drop 3 emerald
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement