Advertisement
Guest User

Untitled

a guest
Mar 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. #Database type, either sqlite or mysql
  2. databasetype: sqlite
  3.  
  4. #MySQL Connection settings, only needed when databasetype is set to mysql
  5. MySQL:
  6. host: localhost
  7. user: root
  8. password: 1234
  9. database: minecraft
  10. port: 3306
  11.  
  12. #Interval ratio for checking for ores to be regenerated in seconds
  13. interval: 10
  14.  
  15. #If set to true players will recieve a message telling them how much longer untill the ore respawn
  16. right-click-message: true
  17.  
  18. #If set to true oreregen is enabled for people in creative mode
  19. creative: true
  20.  
  21. #The block that resembles the empty ore block (if nothing is set as empty at the ore)
  22. empty: BEDROCK
  23.  
  24. #Delays till respawn in Seconds, you can add any block. Use names from this list: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  25. delays:
  26. COAL_ORE:
  27. name: Coal Ore
  28. delay: 3600
  29. empty: BEDROCK
  30. IRON_ORE:
  31. name: Iron Ore
  32. delay: 3600
  33. empty: BEDROCK
  34. GOLD_ORE:
  35. name: Gold Ore
  36. delay: 3600
  37. empty: BEDROCK
  38. LAPIS_ORE:
  39. name: Lapis Lazuli Ore
  40. delay: 3600
  41. empty: BEDROCK
  42. DIAMOND_ORE:
  43. name: Diamond Ore
  44. delay: 3600
  45. empty: BEDROCK
  46. EMERALD_ORE:
  47. name: Emerald Ore
  48. delay: 3600
  49. empty: BEDROCK
  50. QUARTZ_ORE:
  51. name: Quartz Ore
  52. delay: 3600
  53. empty: BEDROCK
  54. REDSTONE_ORE:
  55. name: Redstone Ore
  56. delay: 3600
  57. empty: BEDROCK
  58. GLOWING_REDSTONE_ORE:
  59. name: Redstone Ore
  60. delay: 3600
  61. empty: BEDROCK
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement