Advertisement
Guest User

settings.yml

a guest
Sep 12th, 2016
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.35 KB | None | 0 0
  1. # These first 4 aren't configurable
  2. issues: "https://github.com/IntellectualSites/PlotSquared/issues"
  3. wiki: "https://github.com/IntellectualSites/PlotSquared/wiki"
  4. version: "3.4.6"
  5. platform: "Bukkit"
  6. # Show additional information in console
  7. debug: true
  8. # The big annoying text that appears when you enter a plot
  9. # For a single plot: `/plot flag set titles false`
  10. # For just you: `/plot toggle titles`
  11. titles: true
  12.  
  13. # Enable or disable part of the plugin
  14. # Note: A cache will use some memory if enabled
  15. enabled-components:
  16. # The database stores all the plots
  17. database: true
  18. # Events are needed to track a lot of things
  19. events: true
  20. # Commands are used to interact with the plugin
  21. commands: true
  22. # The UUID cacher is used to resolve player names
  23. uuid-cache: true
  24. # Notify players of updates
  25. updater: true
  26. # Stores user metadata in a database
  27. persistent-meta: true
  28. # Optimizes permission checks
  29. permission-cache: true
  30. # Optimizes block changing code
  31. block-cache: true
  32. # Getting a rating won't need the database
  33. rating-cache: true
  34. # The converter will attempt to convert the PlotMe database
  35. plotme-converter: true
  36. # Allow WorldEdit to be restricted to plots
  37. worldedit-restrictions: true
  38. # Allow economy to be used
  39. economy: true
  40. # Send anonymous usage statistics. Bukkit only setting.
  41. metrics: true
  42. # Expiry will clear old or simplistic plots
  43. plot-expiry: true
  44. # Processes chunks (trimming, or entity/tile limits)
  45. chunk-processor: true
  46. # Kill mobs or vehicles on roads
  47. kill-road-mobs: false
  48. kill-road-vehicles: true
  49. # Notify a player of any missed comments upon plot entry
  50. comment-notifier: true
  51. # Actively purge invalid database entries
  52. database-purger: false
  53. # Delete plots when a player is banned
  54. ban-deleter: false
  55.  
  56. ratings:
  57. categories: []
  58.  
  59. claim:
  60. # The max plots claimed in a single `/plot auto <size>` command
  61. max-auto-area: 1
  62.  
  63. redstone:
  64. # Disable redstone in unoccupied plots
  65. disable-unoccupied: false
  66. # Disable redstone when all owners/trusted/members are offline
  67. disable-offline: true
  68.  
  69. teleport:
  70. # Teleport to your plot on death
  71. on-death: false
  72. # Teleport to your plot on login
  73. on-login: false
  74. # Add a teleportation delay to all commands
  75. delay: 0
  76.  
  77. # Switching from PlotMe?
  78. plotme:
  79. # Cache the uuids from the PlotMe database
  80. cache-uuds: false
  81. # Have `/plotme` as a command alias
  82. alias: false
  83.  
  84. # Relating to how many plots someone can claim
  85. limit:
  86. # Should the limit be global (over multiple worlds)
  87. global: false
  88. # The range of permissions to check e.g. plots.plot.127
  89. max-plots: 3
  90.  
  91. chat:
  92. # Sometimes console color doesn't work, you can disable it here
  93. console-color: true
  94. # Should chat be interactive
  95. interactive: true
  96.  
  97. done:
  98. # Require a done plot to download
  99. required-for-download: false
  100. # Only done plots can be rated
  101. required-for-ratings: false
  102. # Restrict building when a plot is done
  103. restrict-building: false
  104. # The limit being how many plots a player can claim
  105. counts-towards-limit: false
  106.  
  107. web:
  108. # We are already hosting a web interface for you:
  109. url: "http://empcraft.com/plots/"
  110. # The ip that will show up in the interface
  111. server-ip: "your.ip.here"
  112.  
  113. # Configure the paths PlotSquared will use
  114. paths:
  115. schematics: "schematics"
  116. bo3: "BO3"
  117. scripts: "scripts"
  118. templates: "templates"
  119. translations: "translations"
  120.  
  121. uuid:
  122. # Force PlotSquared to use offline UUIDs (it usually detects the right mode)
  123. offline: false
  124. # Force PlotSquared to use lowercase UUIDs
  125. force-lowercase: false
  126. # Use a database to store UUID/name info
  127. use-sqluuidhandler: false
  128.  
  129. chunk-processor:
  130. # Auto trim will not save chunks which aren't claimed
  131. auto-trim: false
  132. # Max tile entities per chunk
  133. max-tiles: 4096
  134. # Max entities per chunk
  135. max-entities: 50
  136. # Disable block physics
  137. disable-physics: false
  138.  
  139. # This is an auto clearing task called `task1`
  140. auto-clear:
  141. task1:
  142. threshold: 1
  143. required-plots: -1
  144. confirmation: false
  145. days: 7
  146. worlds:
  147. - "*"
  148. # See: https://github.com/IntellectualSites/PlotSquared/wiki/Plot-analysis
  149. calibration:
  150. variety: 0
  151. variety-sd: 0
  152. changes: 0
  153. changes-sd: 1
  154. faces: 0
  155. faces-sd: 0
  156. data-sd: 0
  157. air: 0
  158. air-sd: 0
  159. data: 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement