Guest User

Untitled

a guest
Jun 10th, 2015
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. command /triple <text>:
  2. description: TriplePackedOres enable:disable
  3. usage: /triple <enable:disable>
  4. permission: skript.op
  5. trigger:
  6. if arg 1 is "enable":
  7. set {TPO} to true
  8. broadcast "&f[&4TriplePackedOres&f] &cEnabled!"
  9. if arg 1 is "disable":
  10. set {TPO} to false
  11. broadcast "&f[&4TriplePackedOres&f] &cDisabled!"
  12.  
  13. on mine of coal ore:
  14. if {TPO} is true:
  15. cancel the event
  16. drop 3 coal block
  17. drop 3 bottle o' enchanting
  18. set block to air
  19.  
  20. on mine of iron ore:
  21. if {TPO} is true:
  22. cancel the event
  23. drop 3 iron block
  24. drop 3 bottle o' enchanting
  25. set block to air
  26.  
  27. on mine of redstone ore:
  28. if {TPO} is true:
  29. cancel the event
  30. drop 3 redstone block
  31. drop 3 bottle o' enchanting
  32. set block to air
  33.  
  34. on mine of lapis lazuli ore:
  35. if {TPO} is true:
  36. cancel the event
  37. drop 3 lapis lazuli block
  38. drop 3 bottle o' enchanting
  39. set block to air
  40.  
  41. on mine of gold ore:
  42. if {TPO} is true:
  43. cancel the event
  44. drop 3 gold block
  45. drop 3 bottle o' enchanting
  46. set block to air
  47.  
  48. on mine of diamond ore:
  49. if {TPO} is true:
  50. cancel the event
  51. drop 3 diamond block
  52. drop 3 bottle o' enchanting
  53. set block to air
  54.  
  55. on mine of emerald ore:
  56. if {TPO} is true:
  57. cancel the event
  58. drop 3 emerald block
  59. drop 3 bottle o' enchanting
  60. set block to air
  61.  
  62. on craft of enchanted golden apple:
  63. if {TPO} is true:
  64. cancel the event
  65.  
  66. on mine of sugar cane:
  67. if {TPO} is true:
  68. cancel the event
  69. drop 3 bookshelf
  70. set block to air
  71.  
  72. on mine of 18:
  73. if {TPO} is true:
  74. cancel the event
  75. drop 3 apples
  76. set block to air
  77.  
  78. on mine of 18:1:
  79. if {TPO} is true:
  80. cancel the event
  81. drop 3 apples
  82. set block to air
  83.  
  84. on mine of 18:2:
  85. if {TPO} is true:
  86. cancel the event
  87. drop 3 apples
  88. set block to air
  89.  
  90. on mine of 18:3:
  91. if {TPO} is true:
  92. cancel the event
  93. drop 3 apples
  94. set block to air
  95.  
  96. on mine of 161:
  97. if {TPO} is true:
  98. cancel the event
  99. drop 3 apples
  100. set block to air
  101.  
  102. on mine of 161:1:
  103. if {TPO} is true:
  104. cancel the event
  105. drop 3 apples
  106. set block to air
  107.  
  108. on mine of gravel:
  109. if {TPO} is true:
  110. cancel the event
  111. drop 16 arrow
  112. drop 2 flint
  113. drop 1 gravel
  114. set block to air
  115.  
  116. on death of a cow:
  117. if {TPO} is true:
  118. clear drops
  119. drop 3 cooked beef at the cow
  120. drop 2 leather at the cow
  121.  
  122. on death of a chicken:
  123. if {TPO} is true:
  124. clear drops
  125. drop 3 cooked chicken at the chicken
  126. drop 2 feather at the chicken
  127.  
  128. on death of a pig:
  129. if {TPO} is true:
  130. clear drops
  131. drop 3 cooked pork at the pig
  132.  
  133. on death of a skeleton:
  134. if {TPO} is true:
  135. clear drops
  136. drop 5 arrow at the skeleton
  137.  
  138. on death of a creeper:
  139. if {TPO} is true:
  140. clear drops
  141. drop 1 tnt at the creeper
  142.  
  143. on death of a spider:
  144. if {TPO} is true:
  145. clear drops
  146. drop 1 bow at the spider
Advertisement
Add Comment
Please, Sign In to add comment