Advertisement
TheGeneX

sBreakToSell

Jul 1st, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. options:
  2. DinheiroPedra: 1
  3. DinheiroLapis: 2
  4. DinheiroDiamante: 3
  5. DinheiroEsmeralda: 4
  6. DinheiroQuartzo: 5
  7. DinheiroPedregulho: 6
  8. DinheiroBlocoDiamante: 7
  9. DinheiroBlocoLapis: 8
  10. DinheiroBlocoEsmeralda: 9
  11. DinheiroFungo: 10
  12. DinheiroCacto: 11
  13. DinheiroCana: 12
  14. DinheiroOuro: 13
  15. DinheiroFerro: 14
  16. DinheiroRedstone: 15
  17. DinheiroBlocoOuro: 16
  18. DinheiroBlocoFerro: 17
  19. DinheiroBlocoRedstone: 18
  20. DinheiroCarvao: 19
  21. DinheiroBlocoCarvao: 20
  22. DinheiroMelancia: 21
  23. on break:
  24. if event-block is stone:
  25. cancel event
  26. set block at event-block to air
  27. add {@DinheiroPedra} to player's money
  28. if event-block is lapis ore:
  29. cancel event
  30. set block at event-block to air
  31. add {@DinheiroLapis} to player's money
  32. if event-block is diamond ore:
  33. cancel event
  34. set block at event-block to air
  35. add {@DinheiroDiamante} to player's money
  36. if event-block is emerald ore:
  37. cancel event
  38. set block at event-block to air
  39. add {@DinheiroEsmeralda} to player's money
  40. if event-block is quartz ore:
  41. cancel event
  42. set block at event-block to air
  43. add {@DinheiroQuartzo} to player's money
  44. if event-block is cobblestone:
  45. cancel event
  46. set block at event-block to air
  47. add {@DinheiroPedregulho} to player's money
  48. if event-block is iron ore:
  49. cancel event
  50. set block at event-block to air
  51. add {@DinheiroFerro} to player's money
  52. if event-block is gold ore:
  53. cancel event
  54. set block at event-block to air
  55. add {@DinheiroOuro} to player's money
  56. if event-block is redstone ore:
  57. cancel event
  58. set block at event-block to air
  59. add {@DinheiroRedstone} to player's money
  60. if event-block is coal ore:
  61. cancel event
  62. set block at event-block to air
  63. add {@DinheiroCarvao} to player's money
  64. if event-block is melon block:
  65. cancel event
  66. set block at event-block to air
  67. add {@DinheiroMelancia} to player's money
  68. if event-block is cactus:
  69. cancel event
  70. set block at event-block to air
  71. add {@DinheiroCacto} to player's money
  72. if event-block is nether wart:
  73. cancel event
  74. set block at event-block to air
  75. add {@DinheiroFungo} to player's money
  76. if event-block is sugar cane:
  77. cancel event
  78. set block at event-block to air
  79. add {@DinheiroCana} to player's money
  80. if event-block is gold block:
  81. cancel event
  82. set block at event-block to air
  83. add {@DinheiroBlocoOuro} to player's money
  84. if event-block is redstone block:
  85. cancel event
  86. set block at event-block to air
  87. add {@DinheiroBlocoRedstone} to player's money
  88. if event-block is coal block:
  89. cancel event
  90. set block at event-block to air
  91. add {@DinheiroBlocoCarvao} to player's money
  92. if event-block is iron block:
  93. cancel event
  94. set block at event-block to air
  95. add {@DinheiroBlocoFerro} to player's money
  96. if event-block is diamond block:
  97. cancel event
  98. set block at event-block to air
  99. add {@DinheiroBlocoDiamante} to player's money
  100. if event-block is emerald block:
  101. cancel event
  102. set block at event-block to air
  103. add {@DinheiroBlocoEsmeralda} to player's money
  104. if event-block is lapis block:
  105. cancel event
  106. set block at event-block to air
  107. add {@DinheiroBlocoLapis} to player's money
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement