Advertisement
Randall123459

Random Ores UHC scenario

Apr 9th, 2015
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.70 KB | None | 0 0
  1. options:
  2. p: &7[&cIgniteUHC&8] &a
  3.  
  4. command /randomores <text=on>:
  5. aliases: /ro
  6. permission: skript.ro
  7. usage: {@p} /randomores <on|off>
  8. permission message: {@p} You can't do this!
  9. trigger:
  10. if arg 1 is "on" or "enable":
  11. set {randomores.%player%} to true
  12. message "{@p} RandomOres is now on!"
  13. if arg 2 is "off" or "disable"
  14. set {randomores.%player%} to false
  15. message "{@p} RandomOres is now off!”
  16.  
  17. on mine of coal ore:
  18. if {randomores.%player%} is true:
  19. set the block to air
  20. clear the drops
  21. cancel the event
  22. chance of 54.95%:
  23. drop 1 coal
  24. spawn 2 experience orb at event-block
  25. chance of 25%:
  26. drop 1 iron ingot
  27. spawn 2 experience orb at event-block
  28. chance of 10%:
  29. drop 1 gold ingot
  30. spawn 2 experience orb at event-block
  31. chance of 10%:
  32. drop 1 emerald
  33. spawn 2 experience orb at event-block
  34. chance of 0.05%:
  35. drop 1 diamond
  36. spawn 2 experience orb at event-block
  37.  
  38. on mine of iron ore:
  39. if {randomores.%player%} is true:
  40. set the block to air
  41. cancel the event
  42. clear the drops
  43. chance of 10%
  44. drop 1 coal
  45. spawn 2 experience orb at event-block
  46. chance of 50%
  47. drop 1 iron ingot
  48. spawn 2 experience orb at event-block
  49. chance of 30%
  50. drop 1 gold ingot
  51. spawn 2 experience orb at event-block
  52. chance of 5%
  53. drop 1 emerald
  54. spawn 2 experience orb at event-block
  55. chance of 5%
  56. drop 1 diamond
  57. spawn 2 experience orb at event-block
  58.  
  59. on mine of gold ore:
  60. if {randomores.%player%} is true:
  61. set the block to air
  62. cancel the event
  63. clear the drops
  64. chance of 10%
  65. drop 1 coal
  66. spawn 2 experience orb at event-block
  67. chance of 15%
  68. drop 1 iron ingot
  69. spawn 2 experience orb at event-block
  70. chance of 50%
  71. drop 1 gold ingot
  72. spawn 2 experience orb at event-block
  73. chance of 15%
  74. drop 1 emerald
  75. spawn 2 experience orb at event-block
  76. chance of 10%
  77. drop 1 diamond
  78. spawn 2 experience orb at event-block
  79.  
  80. on mine of emerald ore:
  81. if {randomores.%player%} is true:
  82. set the block to air
  83. cancel the event
  84. clear the drops
  85. chance of 5%:
  86. drop 1 coal
  87. spawn 2 experience orb at event-block
  88. chance of 10%:
  89. drop 1 iron ingot
  90. spawn 2 experience orb at event-block
  91. chance of 20%:
  92. drop 1 gold ingot
  93. spawn 2 experience orb at event-block
  94. chance of 45%:
  95. drop 1 emerald
  96. spawn 2 experience orb at event-block
  97. chance of 20%:
  98. drop 1 diamond
  99. spawn 2 experience orb at event-block
  100.  
  101. on mine of lapis lazuli ore:
  102. if {randomores.%player%} is true:
  103. set the block to air
  104. cancel the event
  105. clear the drops
  106. chance of 50%:
  107. drop 1 redstone block
  108. spawn 2 experience orb at event-block
  109. chance of 50%:
  110. drop 1 lapis lazuli block
  111. spawn 2 experience orb at event-block
  112.  
  113. on mine of redstone ore:
  114. if {randomores.%player%} is true:
  115. set the block to air
  116. cancel the event
  117. chance of 50%:
  118. drop 1 redstone block
  119. spawn 2 experience orb at event-block
  120. chance of 50%:
  121. drop 1 lapis lazuli block
  122. spawn 2 experience orb at event-block
  123.  
  124. on mine of diamond ore:
  125. if {randomores.%player%} is true:
  126. set the block to air
  127. cancel the event
  128. chance of 6.25%:
  129. drop 1 coal
  130. spawn 2 experience orb at event-block
  131. chance of 6.25%:
  132. drop 1 iron ingot
  133. spawn 2 experience orb at event-block
  134. chance of 6.25%:
  135. drop 1 gold ingot
  136. spawn 2 experience orb at event-block
  137. chance of 6.25%:
  138. drop 1 emerald
  139. spawn 2 experience orb at event-block
  140. chance of 75%:
  141. drop 1 diamond
  142. spawn 2 experience orb at event-block
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement