Advertisement
Guest User

Untitled

a guest
Jun 29th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.00 KB | None | 0 0
  1. awe:
  2. #Do not change
  3. version: 16
  4. rendering:
  5. #amount of time (in ticks) the server will place a chunk of blocks
  6. interval: 1
  7. #how often that a user will get an update on the current que (number of intervals)
  8. talk-interval: 10
  9. #number of seconds before repeating a message
  10. talk-cooldown: 5
  11. #maximum size of the blocks queue
  12. queue-max-size-hard: 10000000
  13. #maximum number of blocks on the global queue before unlocing it
  14. queue-max-size-soft: 5000000
  15. memory:
  16. #minumum free memory (in kilobytes)
  17. #When the server memory runs below this value all operations are going to cancel
  18. #Use -1 for no limit
  19. minimumHard: -1
  20. #the minimum free memory (In kulobytes) required to allow
  21. #block queuing after the hard limit is reached (soft > hard)
  22. minimumSoft: 600000
  23. #Force GC to run each X miliseconds (-1 - disable) when memory is low
  24. #Warning: if this is not handled correctly it can lead to TPS drop and timeouts!
  25. gcTimeout: 10000
  26. dispatcher:
  27. #maximum number of jobs performed in one run
  28. max-jobs: 2000
  29. #maximum number of idle runs before disabling the dispatcher
  30. max-idle-runs: 200
  31. #maximum number of miliseconds the dispatcher can use
  32. #This value should be lower than 50% of 1 tick (25ms)
  33. max-time: 20
  34. #Maximum number of blocks in que mode before AWE forces block placing.
  35. #Use -1 to disable force flush.
  36. forceFlushBlocks: -1
  37. #Check for updates
  38. checkVersion: true
  39. #Disable or enable blocks physics freeze when placing blocks
  40. physicsFreez: true
  41. #File containing all the messages
  42. strings: "english.yml"
  43. #Show debug messages
  44. debug: false
  45. #Blocks hub plugin options
  46. blocksHub:
  47. log:
  48. #Enable block chang loggin
  49. isEnabled: false
  50. #Enable block change loggin for Direct Chunk API
  51. isDcEnabled: false
  52. #The block access control
  53. access:
  54. #Enable blocks access control
  55. isEnabled: false
  56. #Enable blocks access control for Direct Chunk API
  57. isDcEnabled: false
  58. #Allow NULL player to place blocks (used by some plugins)
  59. allowNull: false
  60. #Allow unknown player to place blocks
  61. allowUnknown: true
  62. #Allow console player to place blocks
  63. allowConsole: true
  64. #Allow offline player to place blocks
  65. allowOffline: false
  66. undo:
  67. #What to do with the undo data when server is running low on memory and
  68. #the operation is running on the main thread
  69. #Allowed values:
  70. # * off - memory is not checked while storing undo data (can lead to server crash)
  71. # * drop - do not store the undo data
  72. # * cancel - cancel current operation (throws max block changed)
  73. memoryLowMain: cancel
  74. #What to do with the undo data when server is running low on memory and
  75. #the operation is not running on the main thread
  76. #Allowed values:
  77. # * off - memory is not checked while storing undo data (can lead to server crash)
  78. # * drop - do not store the undo data
  79. # * cancel - cancel current operation (throws max block changed)
  80. # * wait - wait for GC to free up some memory
  81. memoryLow: wait
  82. #What to do with the undo data when server is running low on memory and
  83. #the operation is not running on the main thread
  84. #Allowed values:
  85. # * off - memory is not checked while storing undo data (can lead to server crash)
  86. # * drop - do not store the undo data
  87. # * wait - wait for GC to free up some memory
  88. memoryLowStorage: wait
  89. #Store the undo data on disk (a bit slower but does not use so much RAM)
  90. storeOnDisk: true
  91. #Remove the WorldEdit session on player logout
  92. cleanOnLogout: false
  93. #Should the undo be keept on disk when the undo is no logner used in WE
  94. keepUndoFile: false
  95. #Permissions options
  96. permissions:
  97. #If you are OP you will have all AWE permissions
  98. #Warning this causes the negative permissions to not work.
  99. opHasAll: true
  100. #Disable the global queue bypass, the player queue bypass works like before
  101. #If you do not want to run out of memory you hsould not set
  102. #the disableQueueBypass to false and opHasAll to true
  103. disableQueueBypass: false
  104. #Player permission groups.
  105. #Permission node: AWE.Groups.<group name>
  106. permissionGroups:
  107. #The group entry (at least one group is required!)
  108. #If a player has multiple groups, the last one defined in the config
  109. #is assigned. (Lower the group the lower the 'weight' if you can compare it to PEX)
  110. default:
  111. #Indicates that the group is called default.
  112. #Only one group can be default, if multiple groups are set to default
  113. #the first one is used as default. The default group is used for players
  114. #that do not have any other permission groups assigned to them.
  115. isDefault: true
  116. #Maximum number of jobs a player can have. -1 = no job limit
  117. maxJobs: 1
  118. #Enable or disable auto job cancelation on player quit
  119. cleanOnLogout: false
  120. #Default AWE status for loging in players
  121. defaultMode: on
  122. #Disable the WorldEdit undo
  123. disableUndo: false
  124. renderer:
  125. #blocks to place (per-interval), this determines the max speed of block placing
  126. #if you experience lag lower this and the next number (time), use -1 for no limit
  127. blocks: 5000
  128. #Maximum number of miliseconds spend on placing blocks, use -1 for no limit
  129. time: 100
  130. queue:
  131. #maximum size of the player block queue
  132. limit-hard: 50000000
  133. #number of blocks on the player queue when to stop placing blocks
  134. limit-soft: 25000000
  135. messages:
  136. #Whether or not to show progress using BarAPI
  137. progress-bar: true
  138. #minimum number of blocks to display the progress bar
  139. progress-bar-min: 100
  140. #Whether or not to show progress using the chat messages
  141. progress-chat: true
  142. #is async world edit talkative
  143. talkative: true
  144. #The WorldEdit config override
  145. worldedit:
  146. #Maximum number of undoos
  147. historySize: 15
  148. #Maximum number of changed blocks
  149. maxBlockChanged: -1
  150. #List of dissallowed block ID
  151. disallowedBlocks: [6, 7, 14, 15, 16, 26, 27, 28, 29, 39, 31, 32, 33, 34, 36, 37, 38, 39, 40, 46, 50, 51, 56, 59, 69, 73, 74, 75, 76, 77, 81, 83]
  152. #Example of additional vip group:
  153. #vip:
  154. # #you can remove this, the isDefault is by default set to false
  155. # isDefault: false
  156. # maxJobs: -1
  157. # cleanOnLogout: false
  158. # #You can omit entries with that are same value as in the default group
  159. # #defaultMode: on
  160. # #Disable the WorldEdit undo
  161. # disableUndo: true
  162. # renderer:
  163. # blocks: 20000
  164. # time: -1
  165. #List of WorldEdit operations that AWE won't run in async mode
  166. disabledOperations: {}
  167. # - undo
  168. # - redo
  169. # - fillXZ
  170. # - removeAbove
  171. # - removeBelow
  172. # - removeNear
  173. # - setBlocks
  174. # - replaceBlocks
  175. # - makeCuboidFaces
  176. # - makeCuboidWalls
  177. # - overlayCuboidBlocks
  178. # - naturalizeCuboidBlocks
  179. # - stackCuboidRegion
  180. # - moveCuboidRegion
  181. # - drainArea
  182. # - fixLiquid
  183. # - makeCylinder
  184. # - makeSphere
  185. # - makePyramid
  186. # - thaw
  187. # - simulateSnow
  188. # - green
  189. # - makePumpkinPatches
  190. # - makeForest
  191. # - makeShape
  192. # - deformRegion
  193. # - hollowOutRegion
  194. # - paste
  195. # - copy
  196. # - cut
  197. # - regenerate
  198. # - center
  199. # - drawLine
  200. # - drawSpline
  201. # - makeBiomeShape
  202. # - forest
  203. # - flora
  204. # - setBiome
  205. # - loadSchematic
  206. # - saveSchematic
  207. # - craftScript
  208. # - makeFaces
  209. # - makeWalls
  210. # - overlayBlocks
  211. # - naturalizeBlocks
  212. # - stackRegion
  213. # - moveRegion
  214. # - schematicInfo
  215. # - placeSchematic
  216. # - chunkSet
  217. # - chunkClear
  218. # - chunkFill
  219. # - chunkClone
  220. # - chunkPaste
  221. # - chunkCopy
  222. # - chunkRelight
  223. # - brush
  224. # - smooth
  225. # - tool
  226. # - tree
  227. # - pickaxe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement