config.yml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. # Note: If the Island's owner is offline, the cobblestone generator would be choose the first Generator-Config.
  9. # Enable this when you also want random blocks from stone generators (lava floats on water vertically)
  10. enable-stone-generator: false
  11. # Enables the hiss sound effect when a block was generated
  12. enable-sound-effect: true
  13. # Enables the smoke particle effect when a block was generated
  14. enable-particle-effect: true
  15. generators:
  16. generator1:
  17. # default generator
  18. # name of the generator (does not need to be set, just for placeholders)
  19. label: "beginner"
  20. blocks:
  21. # Please use Bukkit-Blocknames. List: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
  22. - STONE:50.0
  23. - SANDSTONE:40.0
  24. - IRON_ORE:10.0
  25. permission: ''
  26. # You can also define from what level the generator should be activated. Example: Leave all permissions empty and
  27. # only work with the island Level. The plugin would only consider the islandLevel then.
  28. unlock_islandLevel: 0
  29. generator2:
  30. # vip generator, VIPS need generators.vip permission
  31. label: "VIP"
  32. blocks:
  33. - IRON_ORE:90.0
  34. - STONE:5.0
  35. - SANDSTONE:5.0
  36. permission: 'oregen.vip'
  37. unlock_islandLevel: 0
  38. # Here you can define worlds where the generator should not work
  39. disabled-worlds:
  40. - "world_nether"