Advertisement
Guest User

Triple Ores

a guest
Jan 20th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 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. set block to air
  28. drop 3 iron ingot at event-player
  29. cancel the event
  30.  
  31. on mine of gold ore:
  32. if {tripleores} is true:
  33. set block to air
  34. drop 3 gold ingot at event-player
  35. cancel the event
  36.  
  37. on mine of diamond ore:
  38. if {tripleores} is true:
  39. set block to air
  40. drop 3 diamond at event-player
  41. cancel the event
  42.  
  43. on mine of coal ore:
  44. if {tripleores} is true:
  45. set block to air
  46. drop 3 coal at event-player
  47. cancel the event
  48.  
  49. on mine of emerald ore:
  50. if {tripleores} is true:
  51. drop 3 emerald at event-player
  52. cancel the event
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement