Guest User

Untitled

a guest
Mar 5th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.87 KB | None | 0 0
  1. # All paths in this configuration file are relative to Dynmap's data-folder: minecraft_server/plugins/dynmap/
  2.  
  3. components:
  4. - class: org.dynmap.ClientConfigurationComponent
  5.  
  6. - class: org.dynmap.InternalClientUpdateComponent
  7. sendhealth: true
  8. sendposition: true
  9. allowwebchat: false
  10. webchat-interval: 5
  11. hidewebchatip: false
  12. trustclientname: false
  13. #- class: org.dynmap.JsonFileClientUpdateComponent
  14. # writeinterval: 1
  15. # sendhealth: true
  16. # sendposition: true
  17. # allowwebchat: false
  18. # hidewebchatip: false
  19.  
  20. - class: org.dynmap.SimpleWebChatComponent
  21. allowchat: false
  22.  
  23.  
  24. - class: org.dynmap.ClientComponent
  25. type: chat
  26. - class: org.dynmap.ClientComponent
  27. type: chatballoon
  28. focuschatballoons: true
  29. - class: org.dynmap.ClientComponent
  30. type: chatbox
  31. showplayerfaces: true
  32. messagettl: 5
  33. - class: org.dynmap.ClientComponent
  34. type: playermarkers
  35. showplayerfaces: true
  36. showplayerhealth: true
  37. - class: org.dynmap.ClientComponent
  38. type: landmarks
  39.  
  40.  
  41. # Treat hiddenplayers.txt as a whitelist for players to be shown on the map? (Default false)
  42. display-whitelist: false
  43.  
  44. # How often a tile gets rendered (in seconds).
  45. renderinterval: 1
  46.  
  47. # Zoom-out tile update period - how often to scan for and process tile updates into zoom-out tiles (in seconds)
  48. zoomoutperiod: 60
  49.  
  50. # Tile hashing is used to minimize tile file updates when no changes have occurred - set to false to disable
  51. enabletilehash: true
  52.  
  53. render-triggers:
  54. #- chunkloaded
  55. #- playermove
  56. - playerjoin
  57. - blockplaced
  58. - blockbreak
  59. - snowform
  60. #- leavesdecay
  61. - blockburn
  62. - chunkgenerated
  63.  
  64. tilespath: web/tiles
  65. webpath: web
  66. webserver-bindaddress: 0.0.0.0
  67. webserver-port: 8123
  68. disable-webserver: false
  69. allow-symlinks: true
  70. timesliceinterval: 0.0
  71. maxchunkspertick: 200
  72. updaterate: 2000
  73. showplayerfacesinmenu: true
  74. # Set sidebaropened: true to pin menu sidebar opened
  75. #sidebaropened: true
  76.  
  77. joinmessage: "%playername% joined"
  78. quitmessage: "%playername% quit"
  79. spammessage: "You may only chat once every %interval% seconds."
  80. webprefix: "§2[WEB] "
  81. websuffix: "§f"
  82.  
  83. defaultzoom: 3
  84. defaultworld: tvk
  85.  
  86.  
  87. templates:
  88.  
  89. normal:
  90. enabled: true
  91. bigworld: false
  92. extrazoomout: 4
  93. center:
  94. x: 0
  95. y: 64
  96. z: 0
  97. maps:
  98. - class: org.dynmap.kzedmap.KzedMap
  99. renderers:
  100. - class: org.dynmap.kzedmap.DefaultTileRenderer
  101. name: surface
  102. title: "Surface"
  103. prefix: t
  104. maximumheight: 127
  105. colorscheme: default
  106.  
  107. nether:
  108. enabled: true
  109. bigworld: false
  110. extrazoomout: 4
  111. center:
  112. x: 0
  113. y: 64
  114. z: 0
  115. maps:
  116. - class: org.dynmap.kzedmap.KzedMap
  117. renderers:
  118. - class: org.dynmap.kzedmap.DefaultTileRenderer
  119. name: nether
  120. title: "Surface"
  121. prefix: nt
  122. maximumheight: 127
  123. colorscheme: default
  124. # Map background color (day or night)
  125. background: "#300806"
  126.  
  127. skylands:
  128. enabled: true
  129. bigworld: false
  130. center:
  131. x: 0
  132. y: 64
  133. z: 0
  134. maps:
  135. - class: org.dynmap.kzedmap.KzedMap
  136. renderers:
  137. - class: org.dynmap.kzedmap.DefaultTileRenderer
  138. name: skylands
  139. title: "Surface"
  140. prefix: st
  141. maximumheight: 127
  142. colorscheme: default
  143. # Background color for map during the day
  144. backgroundday: "#153E7E"
  145. # Background color for map during the night
  146. backgroundnight: "#000000"
  147. night-and-day: true
  148. shadowstrength: 1.0
  149. ambientlight: 4
  150.  
  151.  
  152.  
  153. # Set to false for a much quieter startup log
  154. verbose: true
  155.  
  156. # Enables debugging.
  157. #debuggers:
  158. # - class: org.dynmap.debug.LogDebugger
Add Comment
Please, Sign In to add comment