Guest User

Untitled

a guest
Jan 25th, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. #Should we check for updates to the plugin?
  2. # If an update is found, the console will report it when the plugin is loaded.
  3. check-for-updates: true
  4.  
  5. #Should we auto-update the plugin?
  6. #The new version will be downloaded and used once the server reloads or restarts
  7. #If this is true, check-for-updates is assumed to be true
  8. auto-update: true
  9.  
  10.  
  11. # These are all the messages used by the plugin.
  12. # Supports & color codes
  13. random-crate-name: Mystery Crate
  14. random-crate-open-msg: You open a Mystery Crate!
  15. random-crate-dont-have-msg: You don't have a Mystery Crate!
  16. random-crate-lore: Open for a prize!
  17. random-crate-given-crate: You have been given a Mystery Crate!
  18. random-crate-inv-full: Target's inventory is full.
  19. random-crate-has-been-given: has been given a Mystery Crate.
  20. random-crate-not-online: is not online
  21. random-crates-no-permission: You are not allowed to give Mystery Crates to players
  22. random-crates-console-didnt-give-name: You must include a player name from the console.
  23.  
  24. #There are three rarity types
  25. # vrare (Very Rare)
  26. # rare (Rare)
  27. # common (Common)
  28. #
  29. # The default config below will give you a very rare item 3% of the time
  30. # a rare item 17% of the time
  31. # and a common item 80% of the time
  32. # please ensure your count equals up to 100 or blank slots will be given
  33.  
  34. vrare-rarity: 3
  35. rare-rarity: 17
  36. common-rarity: 80
  37.  
  38.  
  39. #item-list
  40. # check the example below for usage. You can specify a few things
  41. #
  42. # the amount it is given
  43. #
  44. # the lore of the item
  45. #
  46. # the rarity type - common, rare, vrare
  47. #
  48. # how often it occurs in that rarity type. 5 == 5% of the time in that group
  49. # for all items in the group, it should equal 100.
  50. #
  51. # the type of enchantment
  52. # legal enchantment values are located at http://jd.bukkit.org/rb/apidocs/org/bukkit/enchantments/Enchantment.html
  53. #
  54. # the enchantment level
  55. # for the maximum levels allowed, check out http://minecraft.gamepedia.com/Enchanting#Enchantments
  56. # If you go over the maximum level, it will default to the maximum level. If level is not given, assumed 1.
  57. #
  58. # You can specify either the item name or the item ID.
  59.  
  60. item-list:
  61. 1:
  62. rarity-type: common
  63. amount: 5
  64. lore: Better luck next time!
  65. rarity: 100
  66. name: Not so lucky stone
  67. Diamond pickaxe:
  68. amount: 1
  69. lore: Very Fortune Pick
  70. rarity-type: vrare
  71. rarity: 100
  72. name: many fortune, wow
  73. enchantment: LOOT_BONUS_BLOCKS
  74. enchantment-level: 3
  75. 98:
  76. amount: 3
  77. lore: Stone bricks of losing
  78. rarity-type: common
  79. rarity: 100
  80. 46:
  81. amount: 16
  82. lore: blow er up
  83. rarity-type: common
  84. rarity: 100
  85. 46:
  86. amount: 64
  87. lore: more to blow er up
  88. rarity-type: common
  89. rarity: 100
  90. 322:
  91. amount: 1
  92. lore: Go PvP
  93. rarity-type: rare
  94. rarity: 100
  95. 276:
  96. amount: 1
  97. lore: go PvP
  98. rarity-type: common
  99. rarity: 100
  100. 383:50
  101. amount: 1
  102. lore: personal boomer
  103. rarity-type: rare
  104. rarity: 100
  105. 49:
  106. amount: 32
  107. lore: go build
  108. rarity-type: common
  109. rarity: 100
  110. 322:1
  111. amount: 1
  112. lore: you better pvp with this
  113. rarity-type: vrare
  114. rarity: 100
  115. 311:
  116. amount: 1
  117. lore: diamond chest of swag
  118. rarity-type: rare
  119. rarity: 100
  120. enchantment: THORNS
  121. enchantment-level: 3
  122. 276:
  123. amount: 1
  124. lore: very sharp
  125. rarity-type: vrare
  126. rarity: 100
  127. enchantment: DAMAGE_ALL
  128. enchantment-level: 5
  129. 364:
  130. amount: 64
  131. lore: atleast no hunger
  132. rarity-type: common
  133. rarity: 100
  134. 384:
  135. amount: 16
  136. lore: go enchanty
  137. rarity-type: common
  138. rarity: 100
Add Comment
Please, Sign In to add comment