Advertisement
Guest User

Untitled

a guest
May 19th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. # You can create generators as much as you want.
  2. # Important: All generators should be named "generator1", "generator2", etc.
  3. # You can define the spawnrates of any block in the blocks-section.
  4. # The spawnrates are in percent, for example 57.3 are 57,3%.
  5. # All values together should be 100%. If all values together are higher or lower as 100, the plugin would'nt work correctly.
  6. # The permissions are custom, so you can make a generator for VIPS, and give them the permission "oregen.vip".
  7. # Are you finish with configuring? Just type /customoregen to reload the plugin!
  8.  
  9. # Note: If the Island's owner is offline, the cobblestone generator would be choose the first Generator-Config.
  10.  
  11. generators:
  12. generator1:
  13. # default generator
  14. # name of the generator (does not need to be set, just for placeholders)
  15. label: "default"
  16. blocks:
  17. # Please use Bukkit-Blocknames. List: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
  18. - STONE:70.0
  19. - COAL_ORE:20.0
  20. - IRON_ORE:10.0
  21. permission: ''
  22. # You can also define from what level the generator should be activated. Example: Leave all permissions empty and
  23. # only work with the island Level. The plugin would only consider the islandLevel then.
  24. unlock_islandLevel: 0
  25. generator2:
  26. # vip generator, VIPS need generators.vip permission
  27. label: "IRON"
  28. blocks:
  29. - STONE:50.0
  30. - IRON_ORE:20.0
  31. - GOLD_ORE:5.0
  32. - LAPIS_ORE:5.0
  33. - COAL_ORE:20.0
  34. permission: 'generators.iron'
  35. unlock_islandLevel: 0
  36. generator3:
  37. label: "GOLD"
  38. blocks:
  39. - STONE:35.0
  40. - IRON_ORE:17.0
  41. - GOLD_ORE:15.0
  42. - LAPIS_ORE:10.0
  43. - COAL_ORE:20.0
  44. - DIAMOND_ORE:3.0
  45. permission: 'generators.gold'
  46. unlock_islandLevel: 0
  47. generator4:
  48. label: "DIAMOND"
  49. blocks:
  50. - STONE:30.0
  51. - IRON_ORE:10.0
  52. - GOLD_ORE:15.0
  53. - LAPIS_ORE:10.0
  54. - COAL_ORE:20.0
  55. - DIAMOND_ORE:10.0
  56. - EMERALD_ORE:5.0
  57. permission: 'generators.diamond'
  58. unlock_islandLevel: 0
  59. # Here you can define worlds where the generator should not work
  60. disabled-worlds:
  61. - "world_nether"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement