Guest User

Untitled

a guest
Jan 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.09 KB | None | 0 0
  1. # All paths in this configuration file are relative to Dynmap's data-folder: minecraft_server/plugins/dynmap/
  2.  
  3. # How often a tile gets rendered (in seconds).
  4. renderinterval: 1
  5.  
  6. render-triggers:
  7. # - playermove
  8. # - playerjoin
  9. - blockplaced
  10. - blockbreak
  11.  
  12. # The path where the tile-files are placed.
  13. tilespath: web/tiles
  14.  
  15. # The path where the web-files are located.
  16. webpath: web
  17.  
  18. # The network-interface the webserver will bind to (0.0.0.0 for all interfaces, 127.0.0.1 for only local access).
  19. webserver-bindaddress: 0.0.0.0
  20.  
  21. # The TCP-port the webserver will listen on.
  22. webserver-port: 8123
  23.  
  24. # Disables Webserver portion of Dynmap (Advanced users only)
  25. disable-webserver: false
  26.  
  27. # Writes JSON to file in the webpath
  28. jsonfile: false
  29.  
  30. # How often the json file gets written to(in seconds)
  31. jsonfile-interval: 1
  32.  
  33. # The maptypes Dynmap will use to render.
  34. worlds:
  35. - name: world
  36. maps:
  37. - class: org.dynmap.flat.FlatMap
  38. prefix: flat
  39. colorscheme: default
  40. - class: org.dynmap.kzedmap.KzedMap
  41. renderers:
  42. - class: org.dynmap.kzedmap.DefaultTileRenderer
  43. prefix: t
  44. maximumheight: 127
  45. colorscheme: default
  46. - class: org.dynmap.kzedmap.CaveTileRenderer
  47. prefix: ct
  48. maximumheight: 127
  49. - name: nether
  50. maps:
  51. - class: org.dynmap.flat.FlatMap
  52. prefix: flat
  53. colorscheme: default
  54. - class: org.dynmap.kzedmap.KzedMap
  55. renderers:
  56. - class: org.dynmap.kzedmap.DefaultTileRenderer
  57. prefix: nt
  58. maximumheight: 64
  59. colorscheme: default
  60.  
  61. web:
  62. # Handles the clientside updates differently only enable if using jsonfile
  63. jsonfile: false
  64.  
  65. # Interval the browser should poll for updates.
  66. updaterate: 2000
  67.  
  68. showchatballoons: false
  69. focuschatballoons: false
  70.  
  71. showchatwindow: true
  72. allowwebchat: true
  73. webchat-interval: 5
  74. messagettl: 15
  75.  
  76. showplayerfacesonmap: true
  77. showplayerfacesinmenu: true
  78.  
  79. joinmessage: "%playername% joined"
  80. quitmessage: "%playername% quit"
  81. spammessage: "You may only chat once every %interval% seconds."
  82.  
  83. components:
  84. - type: chat
  85. - type: chatballoon
  86. focuschatballoons: false
  87. - type: chatbox
  88. showplayerfaces: true
  89. messagettl: 5
  90. - type: playermarkers
  91. showplayerfaces: true
  92. #- type: digitalclock
  93. - type: timeofdayclock
  94. showdigitalclock: true
  95.  
  96. defaultworld: Guinness
  97. worlds:
  98. - title: Guinness
  99. name: Guinness
  100. maps:
  101. - type: FlatMapType
  102. title: Flat
  103. name: flat
  104. prefix: flat
  105. - type: KzedMapType
  106. title: Surface
  107. name: surface
  108. prefix: t
  109. - type: KzedMapType
  110. title: Cave
  111. name: cave
  112. prefix: ct
  113. - title: Nether
  114. name: nether1
  115. maps:
  116. - type: FlatMapType
  117. title: Flat
  118. name: flat
  119. prefix: flat
  120. - type: KzedMapType
  121. title: Surface
  122. name: nether
  123. prefix: nt
  124. # Example:
  125. #- title: Other World # With what name the world is displayed.
  126. # name: world_other # The actual name of the world (equal to your directory-name).
  127. # maps:
  128. # - type: KzedMapType # The type (or perspective) of the map. At the moment, there are no others than KzedMapType.
  129. # title: Surface # The name of the map that will be displayed.
  130. # name: surface # The actual name of the map (should be unique for this world).
  131. # prefix: t # The prefix of the tile-files that are generated.
  132. # icon: images/block_other.png # Sets a custom icon for the map. (optional)
  133. # - type: KzedMapType
  134. # title: Cave
  135. # name: cave
  136. # prefix: ct
  137. # Enables debugging.
  138. #debuggers:
  139. # - class: org.dynmap.debug.LogDebugger
Add Comment
Please, Sign In to add comment