Advertisement
Guest User

Untitled

a guest
Jun 9th, 2013
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.26 KB | None | 0 0
  1. include-files:
  2. ##########
  3. # The plugin will scan through and load these files after loading the main config below.
  4. # Note: drops from included files will are inclusive and will all be added to the drop list.
  5. ##########
  6. - includes/od-fix_undroppables.yml
  7. # - includes/od-goldtools-basic.yml # allow gold tools chance to get ice, glowstone and grass
  8. # - includes/od-goldtools-smelt.yml # gold-pickaxe smelts ores to ingots, sand to glass, etc
  9. - includes/od-ore_extraction.yml
  10. # - includes/od-leaf_overhaul.yml # overhaul leaf drops (apples, cocoa beans, leaves, sticks & a very small chance of golden apple)
  11. - includes/od-playerdeath_zombie.yml
  12. # - includes/od-undead_chaos.yml # the undead shall rise again! Includes players dropping zombies/skeletons
  13. # - includes/od-random_examples.yml # For crazy testing only :) Read through examples before activating.
  14. # - includes/od-dyewool.yml # Dye wool after placing!
  15. - includes/od-stop_mob_farms.yml
  16.  
  17. ## Other users overhauls
  18. # - includes/overhaul-catballs.yml # great example/playable config from Catballs (disable "ob" configs before using this one, otherwise you might have too many drops)
  19. # - includes/overhaul-zarius.yml # Zar's messy config (I run this with no other includes, at the moment)
  20.  
  21. ## Add your files here (alternatively just add your custom drops to the bottom of this file)
  22. # - my_custom_file1.yml
  23.  
  24.  
  25. aliases:
  26. ##########
  27. # add custom YAML aliases here (advanced customisation) - see the wiki for more information
  28.  
  29. defaults:
  30. ##########
  31. # add default values for the config below, "include-files" have their own "defaults" sections
  32.  
  33.  
  34. otherdrops:
  35. ##########
  36. # Your changes here, or create a new .yml file and include it above in the "include-files" section
  37. # Explore the included config files for many more examples
  38. #
  39. # If make a interesting or crazy config let me know on the forum and I might include it in the next release.
  40. #
  41. # Example:
  42. # GLASS:
  43. # - drop: GLASS
  44. #
  45. # - drop: MONEY
  46. # quantity: 3-15
  47. # message: You recycled the glass for %q dollars.
  48. aliases:
  49. # add custom YAML aliases here (advanced customisation) - see the wiki for more information
  50. - &emerald_book
  51. drop: ["writtenbook@page=Worth 1 emerald~&l&a$$$", DEFAULT]
  52. spawnedby: -SPAWNER
  53. chance: 5
  54. message: "You got a reward note! Exchange it with a Money Exchanger."
  55.  
  56. otherdrops:
  57. # could do for any creature
  58. ANY_CREATURE: [*emerald_book]
  59.  
  60. # or for specific creatures
  61.  
  62. Zombie: [*emerald_book]
  63. Skeleton: [*emerald_book]
  64.  
  65. # or if you want different amounts for each book you need to specify the full config per creature, eg.
  66.  
  67. Spider:
  68. - drop: ["writtenbook@page=Worth 3 emerald~&l&a$$$", DEFAULT]
  69. spawnedby: -SPAWNER
  70. chance: 5
  71. message: "You got a reward note! Exchange it with a Money Exchanger."
  72.  
  73. Silverfish:
  74. - drop: ["writtenbook@page=Worth 10 emerald~&l&a$$$", DEFAULT]
  75. spawnedby: -SPAWNER
  76. chance: 5
  77. message: "You got a reward note! Exchange it with a Money Exchanger."
  78.  
  79.  
  80. #etc
  81.  
  82. # note the spacing below here is wrong in places... "drop" "spawnedby" etc all need to line up.
  83. # eg. zombie villager is correct, blaze spacing is wrong.
  84. Zombie_Villager:
  85. - drop: Item_name/Item_Id/Written_Book
  86. spawnedby: -SPAWNER
  87. chance: 8
  88. message: You got a reward note! Exchange it with a Money Exchanger.
  89.  
  90. - drop: DEFAULT
  91.  
  92. Blaze:
  93. - drop: Item_name/Item_Id/Written_Book
  94. spawnedby: -SPAWNER
  95. chance: 6
  96. message: You got a reward note! Exchange it with a Money Exchanger.
  97.  
  98. - drop: DEFAULT
  99.  
  100.  
  101. Spider_Jockey:
  102. - drop: Item_name/Item_Id/Written_Book
  103. spawnedby: -SPAWNER
  104. chance: 10
  105. message: You got a reward note! Exchange it with a Money Exchanger.
  106.  
  107. - drop: DEFAULT
  108.  
  109. Cave_Spider:
  110. - drop: Item_name/Item_Id/Written_Book
  111. spawnedby: -SPAWNER
  112. chance: 5
  113. message: You got a reward note! Exchange it with a Money Exchanger.
  114.  
  115. - drop: DEFAULT
  116. Creeper:
  117. - drop: Item_name/Item_Id/Written_Book
  118. spawnedby: -SPAWNER
  119. chance: 5
  120. message: You got a reward note! Exchange it with a Money Exchanger.
  121.  
  122. - drop: DEFAULT
  123.  
  124. Ghast:
  125. - drop: Item_name/Item_Id/Written_Book
  126. spawnedby: -SPAWNER
  127. chance: 10
  128. message: You got a reward note! Exchange it with a Money Exchanger.
  129.  
  130. - drop: DEFAULT
  131. Slime:
  132. - drop: Item_name/Item_Id/Written_Book
  133. spawnedby: -SPAWNER
  134. chance: 2
  135. message: You got a reward note! Exchange it with a Money Exchanger.
  136.  
  137. - drop: DEFAULT
  138.  
  139. Witch:
  140. - drop: Item_name/Item_Id/Written_Book
  141. spawnedby: -SPAWNER
  142. chance: 8
  143. message: You got a reward note! Exchange it with a Money Exchanger.
  144.  
  145. - drop: DEFAULT
  146. Wither_Skeleton:
  147. - drop: Item_name/Item_Id/Written_Book
  148. spawnedby: -SPAWNER
  149. chance: 10
  150. message: You got a reward note! Exchange it with a Money Exchanger.
  151.  
  152. - drop: DEFAULT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement