Advertisement
Guest User

Untitled

a guest
Oct 1st, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. # ----------- General Stuff -----------
  2. # Available: SQLite / MySQL
  3. DatabaseType: SQLite
  4. MySQL:
  5. Hostname: localhost
  6. Port: 3306
  7. Database: minecraft
  8. User: root
  9. Password: passy
  10. disabled-worlds:
  11. - world_nether
  12. - world_the_end
  13. language: de
  14. HelpCommandPerSite: 10
  15. # ----------- Cost Stuff ------------
  16. # this formula uses limited growth. Cost will raise and raise until it reaches a certain point
  17. # Formula: maxCost - ( maxCost - minCost ) * multiplier ^ amountOfOwnedLands
  18. # you can play around with the formula here: https://www.geogebra.org/m/S6uSGV7c
  19. Economy:
  20. enable: true
  21. Formula:
  22. maxCost: 3000.0
  23. minCost: 50.0
  24. multiplier: 0.95
  25. # on unclaim, this percentage of the original price is paid back.
  26. Payback: 0.8
  27. Freelands: 1
  28. ResetCost: 1000.0
  29. # here you can manage your claims shop.
  30. # - ClaimsQuantity:Price
  31. # e.g. 10:5000
  32. # which means, an user can buy 10 additional claims for 5000 dollars
  33. Shop:
  34. # set this to false, if you want to use the traditional permission based system
  35. enable: false
  36. extras:
  37. - PAPER:10:5000.0
  38. - PAPER:20:9000.0
  39. - PAPER:30:13500.0
  40. - PAPER:50:45000.0
  41. # These are hard caps. If a player has the permission "landlord.limit.10" he will be able to buy up to 20 lands, but cant buy more claims than that.
  42. limits:
  43. - 5000
  44. - 20000
  45. - 100000
  46. - 200000
  47. Homes:
  48. enable: true
  49. spawnParticles: true
  50. teleportCost: 100.0
  51.  
  52. # you can remove items from the /ll manage gui by setting values to false
  53. Manage:
  54. building: true
  55. use: true
  56. regenerate: true
  57. setgreet: true
  58. setfarewell: true
  59. friends: true
  60. unclaim: true
  61.  
  62. # Where should the "Entering XXX's land" be displayed? Available are ActionBar, Chat, Disabled
  63. LandMessage: ActionBar
  64.  
  65. # ----------- Map Stuff ------------
  66. Map:
  67. enable: true
  68. # Refreshrate in Ticks. 20 ticks is equal to one second. The lower you set the value the more laggy it might be
  69. refreshRate: 10
  70. chunkBorders:
  71. # show the chunkborders with particles
  72. enable: false
  73. # interval in seconds
  74. refreshRate: 10
  75. version: 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement