Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2014
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.23 KB | None | 0 0
  1. # - Cactus Crate by Dinosaurs
  2. # - For more information visit http://dev.bukkit.org/bukkit-plugins/cactus-crate/
  3.  
  4. #####################
  5. # - Format - #
  6. #####################
  7.  
  8. # ExampleCrate
  9. # buy-enabled: [true/false]
  10. # cost: [###]
  11. # need-perm-to-buy: [true/false]
  12. # is-physical: [true/false]
  13. # item: '[Item Name/ID]'
  14. # item-name: '[Text]'
  15. # item-lore:
  16. # - '[Line 1]'
  17. # - '[Line 2]'
  18. # - '[Line 3]'
  19. # '[#]'
  20. # playermessage: '[Text]'
  21. # detail: '[Text]'
  22. # commands:
  23. # - [Command 1]
  24. # - [Command 2]
  25. # - [Command 3]
  26.  
  27.  
  28.  
  29.  
  30. #######################
  31. # - Example Crate 1 - #
  32. #######################
  33.  
  34. # What should the Unique Crate Identifier be?
  35. # Note: There can't be 2 crates with the same Crate Identifier
  36. crate:
  37.  
  38. ######################
  39. # - Crate Settings - #
  40. ######################
  41.  
  42. # Should this crate be for sale?
  43. buy-enabled: false
  44.  
  45. # What is the cost for buying this crate?
  46. cost: 3000
  47.  
  48. # Do you need permission to buy this crate?
  49. # If true, the permission for this crate is cactuscrate.buy.crate
  50. need-perm-to-buy: false
  51.  
  52. # Is the crate Virtual, or Physical.
  53. # Set this to true, if you want it to be physical
  54. # Set this to false, if you want it to be virtual
  55. is-physical: true
  56.  
  57. # If the crate is physical, what kind of item should it be.
  58. item: 'chest'
  59.  
  60. # What should the item's name be?
  61. item-name: '{GREEN} General Crate'
  62.  
  63. # What is the items lore?
  64. item-lore:
  65. - '{WHITE} An {GREEN}Cactus {GOLD}Crate'
  66. - '{WHITE} Contains $1000 and more!'
  67.  
  68. ######################
  69. # - Crate Rewards - #
  70. ######################
  71.  
  72. # 1/1 (100%) Chance to recieve an $1000
  73. # Do you want the player to recieve an reward whenever they open an crate?
  74. '1':
  75.  
  76. # What message do you want to send to the player when they recieve the crate?
  77. playermessage: The crate contained $1000!
  78.  
  79. # How would you describe this reward?
  80. # Players viewing /crate info crate
  81. detail: $1000
  82.  
  83. # What commands are used to give out this reward?
  84. commands:
  85. - '/eco give {PLAYER} 1000'
  86. # Do you want to give the player 64 apples along with the $1000?
  87. # Remove the # if you want to give the player 64 apples.
  88. #- '/give {PLAYER} apple 64'
  89.  
  90.  
  91. # 1/10 (30%) Chance to recieve an $10000000
  92. '30':
  93. playermessage: 'The Mystery Crate contained $10000000'
  94. broadcast: '{PLAYER} has received $10000000 from opening a Mystery Crate!'
  95. detail: $10000000
  96. commands:
  97. - '/eco give {PLAYER} 10000000'
  98.  
  99. # 1/10 (10%) Chance to recieve Fugitive Kit
  100. '10':
  101. playermessage: 'The Mystery Crate contained a Fugitive Kit!'
  102. broadcast: '{PLAYER} has received a Fugitive Kit from opening a Mystery Crate!'
  103. detail: Fugitive Kit
  104. commands:
  105. - '/kit fugitive {PLAYER}'
  106.  
  107. # 1/10 (10%) Chance to win 32 OP Golden Apples
  108. '10':
  109. playermessage: 'The Mystery Crate contained 32 OP Golden Apples!'
  110. broadcast: '{PLAYER} has received 32 OP Golden Apples from opening a Mystery Crate!'
  111. detail: 32 OP Golden Apples
  112. commands:
  113. - '/give {PLAYER} 322:1 32'
  114.  
  115. # 1/10 (10%) Chance to recieve 2 crates
  116. '10':
  117. broadcast: '{PLAYER} has received 2 Mystery Crates opening a Mystery Crate!'
  118. playermessage: 'The Mystery Crate contained 2 Mystery Crates!'
  119. detail: 2 Mystery Crates
  120. commands:
  121. - '/crates give {PLAYER} 2'
  122.  
  123. # 1/20 (5%) Chance to recieve a Surprise Pick
  124. '5':
  125. playermessage: 'The Mystery Crate contained a Surprise Pickaxe!'
  126. broadcast: '{PLAYER} has received a Surprise Pickaxe from opening a Mystery Crate!'
  127. detail: Surprise Pickaxe
  128. commands:
  129. - '/kit Surprisepick {PLAYER}'
  130.  
  131. # 1/20 (5%) Chance to recieve 32 bookshelves
  132. '5':
  133. broadcast: '{PLAYER} has received 32 Bookshelves from opening a Mystery Crate!'
  134. playermessage: 'The Mystery Crate contained 32 Bookshelves!'
  135. detail: 32 bookshelves
  136. commands:
  137. - '/give {PLAYER} 47 32'
  138.  
  139. # 1/20 (5%) Chance to recieve $50000000
  140. '5':
  141. broadcast: '{PLAYER} has received $50000000 from opening a Mystery Crate!'
  142. playermessage: 'The Mystery Crate contained $50000000.'
  143. detail: 50 million
  144. commands:
  145. - '/eco give {PLAYER} 50000000'
  146.  
  147. # 1/20 (5%) Chance to recieve Terminator Kit
  148. '5':
  149. broadcast: '{PLAYER} has received a Terminator Kit from opening a Mystery Crate!'
  150. playermessage: 'The Mystery Crate contained a Terminator Kit!'
  151. detail: Terminator Kit
  152. commands:
  153. - '/kit terminator {PLAYER}'
  154.  
  155. # 39/200 (19.5%) Chance to recieve 256 Emerald Blocks, 256 Diamond Blocks
  156. '19.5':
  157. broadcast: '{PLAYER} has received 256 Emerald Blocks and 256 Diamond Blocks from opening a Mystery Crate!'
  158. playermessage: 'The Mystery Crate contained 256 Emerald Blocks and 256 Diamond Blocks!'
  159. detail: 256 Diamond and Emerald blocks
  160. commands:
  161. - '/give {PLAYER} 57 256'
  162. - '/give {PLAYER} 133 256'
  163.  
  164. # 1/200 (0.5%) Chance to recieve 1 bow
  165. '0.5':
  166. broadcast: '{PLAYER} has received 1 bow from opening a Mystery Crate!'
  167. playermessage: 'The Mystery Crate contained 1 bow!'
  168. detail: bow
  169. commands:
  170. - '/give {PLAYER} 261 1'
  171.  
  172. #######################
  173. # - Example Crate 2 - #
  174. #######################
  175. armorcrate:
  176. buy-enabled: true
  177. cost: 10000
  178. need-perm-to-buy: false
  179. is-physical: true
  180. item: 130
  181. item-name: '{GOLD} Armor Crate'
  182. item-lore:
  183. - '{WHITE} A crate which holds the finest quality of armors!'
  184. '12':
  185. playermessage: 'You have found the top pieces of the Achilles Set!'
  186. detail: '{LIGHT_PURPLE}Achilles Set: Chestplate and Headgear'
  187. commands:
  188. - '/give {PLAYER} 306 1 name:&4Achilles_Headgear lore:&4[1_of_4]_Achilles_Set 0:2'
  189. - '/give {PLAYER} 307 1 name:&4Achilles_Chestplate lore:&4[2_of_4]_Achilles_Set 0:3'
  190. '16':
  191. playermessage: 'You have found the bottom pieces of the Achilles Set!'
  192. detail: '{LIGHT_PURPLE}Achilles Set: Leggings and Heel'
  193. commands:
  194. - '/give {PLAYER} 308 1 name:&4Achilles_Leggings lore:&4[3_of_4]_Achilles_Set 0:2'
  195. - '/give {PLAYER} 309 1 name:&4Achilles_Heel lore:&4[4_of_4]_Achilles_Set 0:2'
  196. '24':
  197. playermessage: 'You have found the Dragonborn:_Headpiece'
  198. detail: '{DARK_PURPLE}Dragonborn: Headpiece'
  199. commands:
  200. - '/give {PLAYER} 310 1 name:&4Dragonborn:_Headpiece lore:&4Very_few_have_seen_this. 0:2 4:2'
  201. '32':
  202. playermessage: 'You have found the Dragonborn:_Boots'
  203. detail: '{DARK_PURPLE}Dragonborn: Boots'
  204. commands:
  205. - '/give {PLAYER} 313 1 name:&4Dragonborn:Boots lore:&4Once_said_he_was_able_to_fly. 2:4'
  206. '42':
  207. playermessage: 'You have found the Dragonborn:_Leggings'
  208. detail: '{DARK_PURPLE}Dragonborn: Leggings'
  209. commands:
  210. - '/give {PLAYER} 312 1 name:&4Dragonborn:_Leggings lore:&4Was_once_worn_by_the_Dragonborn. 0:2 1:1'
  211. '50':
  212. playermessage: 'You have found the Dragonborn: Chestplate'
  213. detail: '{DARK_PURPLE}Dragonborn: Chestplate'
  214. commands:
  215. - '/give {PLAYER} 311 1 name:&4Dragonborn:_Chestplate lore:&4One_of_the_finest_chestplates. 0:4 1:4 3:4 7:1'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement