Advertisement
Guest User

config.yml

a guest
Jun 30th, 2020
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. #These are the ore regen settings
  2. #Uses default generator settings for vanilla Minecraft
  3. ore-regen:
  4. #Whether or not to check chunks for existing ores
  5. #Must have load-chunks enabled
  6. #Good for smaller servers (Uses more resources)
  7. #I would gen chunks before players join but it runs fine on my 2ghz 4 thread 1gb ram server
  8. check-existing: false
  9. #Whether or not to check chunks that are not loaded
  10. load-chunks: true
  11. #Number of ticks to wait between placements
  12. #Increase if you are experiencing lag when resetting ores
  13. block-limiter: 1
  14. #Worlds to regen ores in
  15. worlds:
  16. world:
  17. ores:
  18. - COAL_ORE
  19. - IRON_ORE
  20. - LAPIS_ORE
  21. - GOLD_ORE
  22. - REDSTONE_ORE
  23. - DIAMOND_ORE
  24. #Will only gen in extreme hills
  25. - EMERALD_ORE
  26. world_nether:
  27. ores:
  28. - NETHER_QUARTZ_ORE
  29. - NETHER_GOLD_ORE
  30. #Generator settings
  31. ore-settings:
  32. COAL_ORE:
  33. #Once the number of ores in a chunk dips below this number the plugin will regen the ore
  34. #Must have check-existing enabled
  35. threshold: 50
  36. #Number of tries to spawn the ore
  37. #Raise this number if you are using check-enabled
  38. tries: 5
  39. #Chance the plugin will generate the ore
  40. chance: 60
  41. #Minimum height an ore can spawn
  42. min-height: 5
  43. #Maxinum difference between min and max spawn height
  44. height-range: 150
  45. #Chance the plugin will add an additional block to the vein
  46. size-limiter: 50
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement