Advertisement
Guest User

Untitled

a guest
Sep 10th, 2015
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. # Landlord Created by Jcdesimp
  2. # ##### DEFAULT CONFIG #####
  3. # General options
  4. # options:
  5. # #Enable sound effects when interacting with owned land.
  6. # soundEffects: true
  7. # #Enable particle effects for land interaction
  8. # particleEffects: true
  9. # #Enable the land map (/landlord map)
  10. # #Can sometimes be resource intensive if a lot of players have it open.
  11. # enableMap: true
  12. # #Regenerate a chunk when it is unclaimed (Removes all builds and changes)
  13. # regenOnUnclaim: false
  14. # #Show entey/exit messages when players enter/leave owned land.
  15. # showLandAlerts: true
  16. # Limits on amount of owned land
  17. # limits:
  18. # #Max land a regular player can own (-1 for no limit).
  19. # landLimit: 10
  20. # #Extra land that players with "landlord.limit.extra","landlord.limit.extra2", etc. can own (Gets added to landLimit).
  21. # extra: 10
  22. # extra2: 20
  23. # extra3: 30
  24. # extra4: 40
  25. # extra5: 50
  26. # Economy settings (Requires Vault)
  27. # economy:
  28. # #Enable economy integration features
  29. # enable: false
  30. # #Amount of free land a player can own before being charged
  31. # freeLand: 0
  32. # #Cost of claiming land
  33. # buyPrice: 100
  34. # #Money given to player when unclaiming land
  35. # sellPrice: 50
  36. # Worldguard Options (Requires Worldguard)
  37. # worldguard:
  38. # #Prevent players from claiming chunks that intersect with worldguard regions,
  39. # #UNLESS they have build permissions within that region.
  40. # blockRegionClaim: true
  41. # Here you can enable/disable the built-in land flags.
  42. # enabled-flags:
  43. # build: true
  44. # harmAnimals: true
  45. # openDoor: true
  46. # tntDamage: true
  47. # useContainers: true
  48. # useRedstone: true
  49. # pvp: true
  50. # Here you can disable worlds where player should not claim/unclaim
  51. # disabled-worlds:
  52. # - world_nether
  53. # - world_the_end
  54. # #### CONFIGURE OPTIONS BELOW ####
  55.  
  56. options:
  57. soundEffects: true
  58. particleEffects: true
  59. enableMap: true
  60. regenOnUnclaim: false
  61. showLandAlerts: true
  62. limits:
  63. landLimit: 5
  64. extra: 45
  65. extra2: 20
  66. extra3: 30
  67. extra4: 40
  68. extra5: 50
  69. economy:
  70. enable: false
  71. freeLand: 5
  72. buyPrice: 1000
  73. sellPrice: 500
  74. worldguard:
  75. blockRegionClaim: false
  76. enabled-flags:
  77. build: true
  78. harmAnimals: true
  79. openDoor: true
  80. tntDamage: true
  81. useContainers: true
  82. useRedstone: true
  83. pvp: true
  84. disabled-worlds:
  85. - world_nether
  86. - world_the_end
  87. - eldaria_nether
  88. - eldaria_the_end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement