Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 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. blocks:
  15. # Please use Bukkit-Blocknames. List: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
  16. - STONE:70.5
  17. - IRON_ORE:7.0
  18. - DIAMOND_ORE:1.0
  19. - EMERALD_ORE:0.5
  20. - REDSTONE_ORE:2.0
  21. - GOLD_ORE:3.0
  22. - LAPIS_ORE:2.0
  23. - COAL_ORE:14.0
  24. permission: 'oregen.player'
  25. # You can also define from what level the generator should be activated. Example: Leave all permissions empty and
  26. # only work with the island Level. The plugin would only consider the islandLevel then.
  27. unlock_islandLevel: 0
  28. generator2:
  29. # vip generator, VIPS need generators.vip permission
  30. blocks:
  31. - STONE:70.5
  32. - IRON_ORE:7.0
  33. - DIAMOND_ORE:1.0
  34. - EMERALD_ORE:0.5
  35. - REDSTONE_ORE:2.0
  36. - GOLD_ORE:3.0
  37. - LAPIS_ORE:2.0
  38. - COAL_ORE:14.00
  39. permission: 'oregen.vip'
  40. unlock_islandLevel: 0
  41. # Here you can define worlds where the generator should not work
  42. disabled-worlds:
  43. - "world_nether"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement