Advertisement
Guest User

Untitled

a guest
May 29th, 2015
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.52 KB | None | 0 0
  1. ###################################
  2. # LuckyBlock #
  3. # by SainttX #
  4. ###################################
  5.  
  6. # Various configurable messages found in the plugin
  7. messages:
  8. brokeBlock: "&eYou broke a lucky block!"
  9. blockPlaced: "&eYou placed a lucky block!"
  10.  
  11. # The configuration section for all lucky reward definitions.
  12. # These are rewards that are parsed when the plugin loads and
  13. # are attempted to be given to players when they break a piece
  14. # of sponge (ie. lucky block). If you don't want your players
  15. # to receive nothing, add a default reward at the bottom of the
  16. # list that has a chance >= 100.
  17. #
  18. # Chances that have lower probability should be near the top of
  19. # the list, as the chance is parsed in order. So if you have a
  20. # reward with 100% chance at the top, it will trigger first and
  21. # won't go further.
  22. rewards:
  23. # This is a useless key that is only used to differentiate
  24. # the rewards from each other. You can put anything here.
  25. # lucky30:
  26. # This is the % chance that a reward can be triggered.
  27. # When rewards are triggered, the message (if defined)
  28. # will be sent to the player, and any commands will be
  29. # ran with [player] being replaced with the players name.
  30. # chance: 30
  31. # This is the message that will be sent to the player
  32. # when they receive this reward. Remove the line to
  33. # not send any messages.
  34. # message: "&eYou received the 30% reward"
  35. # These are any commands that will be ran in the players
  36. # name. Remove this section to not run any commands.
  37. # commands:
  38. # - "msg [player] You won a lucky reward!"
  39. # - "eco give [player] 50"
  40. # The item that the plugin should drop when the block is
  41. # broken. This section, like the others, can be removed
  42. # to have no item drop.
  43. # item:
  44. # The material of the item that will be dropped. Valid
  45. # materials can be found here:
  46. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  47. # type: PAPER
  48. # The data value/durability of the item
  49. # durability: 0
  50. # The amount to drop (must be > 0)
  51. # amount: 1
  52. # The display name of the item
  53. # displayName: "&eA piece of paper"
  54. # Any enchantments to be added to the item. This
  55. # section confide to the format 'ENCHANTMENT: LEVEL'
  56. # Valid enchantment names can be found here:
  57. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  58. # enchantments:
  59. # DURABILITY: 5
  60. # Any lore to be added to the item
  61. # lore:
  62. # - "&7Paper item lore!"
  63. 10B:
  64. chance: 1
  65. message: "&eYou won 10B!"
  66. commands:
  67. - "eco give [player] 1000000000"
  68. kingkit:
  69. chance: 1
  70. message: "&eYou won a King Kit!"
  71. commands:
  72. - "kit king [player]"
  73. level7BB:
  74. chance: 1
  75. message: "&eYou won 3 Level 7 ByteBombs!"
  76. commands:
  77. - "bombs [player] 3 7"
  78. titankit:
  79. chance: 5
  80. message: "&eYou won a Titan Kit!"
  81. commands:
  82. - "kit titan [player]"
  83. diamondblocks:
  84. chance: 30
  85. message: "&eYou won 256x Diamond Blocks!"
  86. commands:
  87. - "give [player] 57 256"
  88. emeraldblocks:
  89. chance: 30
  90. message: "&eYou won 256x Emerald Blocks!"
  91. commands:
  92. - "give [player] 133 256"
  93. dblocks1028:
  94. chance: 15
  95. message: "&eYou won 1028x Diamond Blocks!"
  96. commands:
  97. - "give [player] 57 1028"
  98. eblocks1028:
  99. chance: 15
  100. message: "&eYou won 1028x Emerald Blocks!"
  101. commands:
  102. - "give [player] 133 1028"
  103. potionpack:
  104. chance: 25
  105. message: "&eYou won a Potion Pack!"
  106. commands:
  107. - "give [player] 373:8225 3"
  108. - "give [player] 373:8233 3"
  109. - "give [player] 373:8226 3"
  110. - "give [player] 373:16421 3"
  111. - "give [player] 373:16427 3"
  112. - "give [player] 373:16458 3"
  113. - "give [player] 373:16420 3"
  114. - "give [player] 373:16456 3"
  115. - "give [player] 373:16428 3"
  116. 100K:
  117. chance: 100
  118. message: "&eYou won 100K!"
  119. commands:
  120. - "eco give [player] 100000"
  121. 100MLoss:
  122. chance: 20
  123. message: "&eYou Got A Unlucky Block! &cLost 100M"
  124. commands:
  125. - "eco take [player] 100000000"
  126. Smiten:
  127. chance: 40
  128. message: "&eYou Got A Unlucky Block!"
  129. commands:
  130. - "smite [player]"
  131. 10MLoss:
  132. chance: 30
  133. message: "&eYou Got A Unlucky Block! &cLost 10M"
  134. commands:
  135. - "eco take [player] 10000000"
  136. 1MLoss:
  137. chance: 50
  138. message: "&eYou Got A Unlucky Block! &cLost 1M"
  139. commands:
  140. - "eco take [player] 1000000"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement