Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 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: "Gen1"
  16. blocks:
  17. # Please use Bukkit-Blocknames. List: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
  18. - COBBLESTONE:50.0
  19. - IRON_ORE:15.0
  20. - GRANITE:15.0
  21. - DIORITE:10.0
  22. - COAL_ORE:10.0
  23. permission: ''
  24. # You can also define from what level the generator should be activated. Example: Leave all permissions empty and
  25. # only work with the island Level. The plugin would only consider the islandLevel then.
  26. unlock_islandLevel: 0
  27. generator2:
  28. label: "Gen2"
  29. blocks:
  30. - IRON_ORE:35.0
  31. - STONE:35.0
  32. - GRANITE:10.0
  33. - GOLD_ORE:5.0
  34. - SANDSTONE:5.0
  35. - COAL_ORE:10.0
  36. permission: ''
  37. unlock_islandLevel: 100
  38. generator3:
  39. label: "Gen3"
  40. blocks:
  41. - IRON_ORE:10.0
  42. - STONE:35.0
  43. - DIAMOND_ORE:5.0
  44. - GOLD_ORE:15.0
  45. - SANDSTONE:20.0
  46. - COAL_ORE:15.0
  47. permission: ''
  48. unlock_islandLevel: 200
  49. generator4:
  50. label: "Gen4"
  51. blocks:
  52. - IRON_ORE:5.0
  53. - STONE:15.0
  54. - DIAMOND_ORE:30.0
  55. - EMERALD_ORE:15.0
  56. - GOLD_ORE:20.0
  57. - DIAMOND_BLOCK:1.0
  58. - IRON_BLOCK:9.0
  59. - COAL_BLOCK:5.0
  60. permission: ''
  61. unlock_islandLevel: 300
  62. generator5:
  63. label: "Gen4"
  64. blocks:
  65. - STONE:5.0
  66. - DIAMOND_ORE:45.0
  67. - GOLD-ORE:20.0
  68. - IRON_BLOCK:15.0
  69. - COAL_BLOCK:15.0
  70. - EMERALD_BLOCK:5.0
  71. permissions: ''
  72. unlock_islandLevel: 400
  73. disabled-worlds:
  74. - "world_nether"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement