Advertisement
Guest User

Untitled

a guest
Apr 25th, 2011
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.98 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: 78.47.47.180
  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: false
  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: landmarks
  85. - type: chat
  86. #- type: chatballoon
  87. focuschatballoons: false
  88. - type: chatbox
  89. showplayerfaces: true
  90. messagettl: 5
  91. - type: playermarkers
  92. showplayerfaces: false
  93. #- type: digitalclock
  94. - type: timeofdayclock
  95. showdigitalclock: true
  96.  
  97. defaultworld: world
  98. worlds:
  99. - title: World
  100. name: world
  101. maps:
  102. - type: FlatMapType
  103. title: Flat
  104. name: flat
  105. prefix: flat
  106. - type: KzedMapType
  107. title: Surface
  108. name: surface
  109. prefix: t
  110. - type: KzedMapType
  111. title: Cave
  112. name: cave
  113. prefix: ct
  114. - title: Nether
  115. name: nether
  116. maps:
  117. - type: FlatMapType
  118. title: Flat
  119. name: flat
  120. prefix: flat
  121. - type: KzedMapType
  122. title: Surface
  123. name: nether
  124. prefix: nt
  125. # Example:
  126. #- title: Other World # With what name the world is displayed.
  127. # name: world_other # The actual name of the world (equal to your directory-name).
  128. # maps:
  129. # - type: KzedMapType # The type (or perspective) of the map. At the moment, there are no others than KzedMapType.
  130. # title: Surface # The name of the map that will be displayed.
  131. # name: surface # The actual name of the map (should be unique for this world).
  132. # prefix: t # The prefix of the tile-files that are generated.
  133. # icon: images/block_other.png # Sets a custom icon for the map. (optional)
  134. # - type: KzedMapType
  135. # title: Cave
  136. # name: cave
  137. # prefix: ct
  138. # Enables debugging.
  139. #debuggers:
  140. # - class: org.dynmap.debug.LogDebugger
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement