Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. #Ores tiers by trHowy :D
  2.  
  3. options:
  4. P: &a[&eOreTiers&a] &b
  5.  
  6. command /oretiers <text>:
  7. usage: /oretiers <on/off>
  8. aliases: /ot
  9. description: Enables and Disables OreTiers gamemode
  10. trigger:
  11. if arg 1 is equal to "on" or "enable":
  12. set {Ores} to true
  13. broadcast "{@P} Enabled by &3%command sender%"
  14. loop all players:
  15. command "/playsound random.pop %loop-player%"
  16. if arg 1 is not set:
  17. message "{@P} /oretiers on/off"
  18. if arg 1 is equal to "off" or "disable":
  19. set {Ores} to false
  20. broadcast "{@P} Disabled by &3%command sender%"
  21. loop all players:
  22. command "/playsound mob.wolf.growl %loop-player%"
  23.  
  24.  
  25.  
  26.  
  27. on break of Nether Quartz ore:
  28. if {Ores} is true:
  29. cancel the event
  30. set block to air
  31. drop 3 lapis lazuli
  32. drop 1 emerald
  33. drop 3 redstone dust
  34. drop 1 iron ingot
  35. drop 1 coal
  36. drop 1 cobblestone
  37. chance of 2%:
  38. drop 1 diamond
  39. chance of 3%:
  40. drop 1 golden ingot
  41.  
  42. on break of emerald ore:
  43. if {Ores} is true:
  44. cancel the event
  45. set block to air
  46. drop 1 emerald
  47. drop 1 diamond
  48. drop 1 golden ingot
  49. drop 3 lapis lazuli
  50. drop 3 redstone dust
  51. drop 1 iron ingot
  52. drop 1 coal
  53. drop 1 cobblestone
  54.  
  55.  
  56. on break of diamond ore:
  57. if {Ores} is true:
  58. cancel the event
  59. set block to air
  60. drop 1 diamond
  61. drop 1 golden ingot
  62. drop 3 lapis lazuli
  63. drop 3 redstone dust
  64. drop 1 iron ingot
  65. drop 1 coal
  66. drop 1 cobblestone
  67.  
  68. on break of gold ore:
  69. if {Ores} is true:
  70. cancel the event
  71. set block to air
  72. drop 1 golden ingot
  73. drop 3 lapis lazuli
  74. drop 3 redstone dust
  75. drop 1 iron ingot
  76. drop 1 coal
  77. drop 1 cobblestone
  78.  
  79. on break of gold ore:
  80. if {Ores} is true:
  81. cancel the event
  82. set block to air
  83. drop 1 golden ingot
  84. drop 3 lapis lazuli
  85. drop 3 redstone dust
  86.  
  87. on break of redstone ore:
  88. if {Ores} is true:
  89. cancel event
  90. set block to air
  91. drop 3 redstone ore
  92. drop 1 iron ingot
  93. drop 1 coal
  94. drop 1 cobblestone
  95.  
  96. on break of iron ore:
  97. if {Ores} is true:
  98. cancel event
  99. set block to air
  100. drop 1 iron ingot
  101. drop 1 coal
  102. drop 1 cobblestone
  103.  
  104. on break of coal ore:
  105. if {Ores} is true:
  106. cancel event
  107. set block to air
  108. drop 1 coal
  109. drop 1 cobblestone
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement