Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. Main:
  2.  
  3. # The recipe players will need to place into a chest
  4. # in order to create a powercell.
  5. PowerCell Recipe:
  6. - 3:IRON_INGOT
  7. - 4:DIAMOND
  8. - 5:IRON_INGOT
  9. - 12:DIAMOND
  10. - 13:IRON_INGOT
  11. - 14:DIAMOND
  12. - 21:IRON_INGOT
  13. - 22:DIAMOND
  14. - 23:IRON_INGOT
  15.  
  16. # The value in minutes of each item put into the powercell.
  17. PowerCell Item Values:
  18. - IRON_INGOT:5
  19. - GOLD_INGOT:10
  20. - DIAMOND:30
  21. - EMERALD:35
  22. - COAL:1
  23. - IRON_BLOCK:50
  24. - GOLD_BLOCK:100
  25. - DIAMOND_BLOCK:300
  26. - EMERALD_BLOCK:350
  27. - COAL_BLOCK:10
  28.  
  29. # Which economy plugin should be used?
  30. # You can choose from "PlayerPoints".
  31. Economy: Vault
  32.  
  33. # Which hologram plugin should be used?
  34. # You can choose from "HolographicDisplays".
  35. Hologram: HolographicDisplays
  36.  
  37. # How much money should constitute one minute?
  38. PowerCell Economy Value: 1000
  39.  
  40. # The minimum amount of power allowed before a claim
  41. # auto dissolves.
  42. Minimum PowerCell power: -10
  43.  
  44. # Should holograms be placed above powercells?
  45. Powercell Holograms: true
  46.  
  47. # Display a boss bar to players while they're in a claim?
  48. # Default behavior is to show a title on entry/exit.
  49. Claims Use Boss Bar: true
  50.  
  51. # Should chunks have to touch to be claimed?
  52. # This prevents people from claiming little pieces all over the place.
  53. Chunks Must Touch: true
  54.  
  55. # The amount of time before an invite times out.
  56. Invite Timeout: 30
  57.  
  58. # The starting amount of power in minutes a claim gets.
  59. # This time should be used to create a powercell.
  60. Starting Power: 10
  61.  
  62. # The maximum amount of chunks a claim can have.
  63. Max Chunks: 100
  64.  
  65. # The maximum amount of members a claim can have.
  66. Max Members: 20
  67.  
  68. # The worlds that claims are disabled in.
  69. Disabled Worlds:
  70. - disabled_world
  71.  
  72. # The equation used for calcuation the cost of a claim.
  73. # NONE - The claim size does not affect the cost.
  74. # DEFAULT - Multiplies the cost by the claim size.
  75. # LINEAR [value] - Multiplies the cost by the claim size multiplied by the value.
  76. Cost Equation: NONE
  77.  
  78. Interfaces:
  79.  
  80. Glass Type 1: GRAY_STAINED_GLASS_PANE
  81.  
  82. Glass Type 2: BLUE_STAINED_GLASS_PANE
  83.  
  84. Glass Type 3: LIGHT_BLUE_STAINED_GLASS_PANE
  85.  
  86. System:
  87.  
  88. # The enabled language file.
  89. # More language files (if available) can be found in the plugins data folder.
  90. Language Mode: en_US
  91.  
  92. MySQL:
  93.  
  94. # Set to 'true' to use MySQL instead of SQLite for data storage.
  95. Enabled: true
  96.  
  97. Hostname: localhost
  98.  
  99. Port: 3306
  100.  
  101. Database: worldcore
  102.  
  103. Username: root
  104.  
  105. Password: chraws_0512
  106.  
  107. Use SSL: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement