Advertisement
Guest User

Untitled

a guest
Apr 9th, 2011
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 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: TrixieWorld
  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.  
  50. web:
  51. # Handles the clientside updates differently only enable if using jsonfile
  52. jsonfile: false
  53.  
  54. # Interval the browser should poll for updates.
  55. updaterate: 2000
  56.  
  57. showchatballoons: false
  58. focuschatballoons: false
  59.  
  60. showchatwindow: false
  61. allowwebchat: false
  62. webchat-interval: 5
  63. messagettl: 15
  64.  
  65. showplayerfacesonmap: true
  66. showplayerfacesinmenu: true
  67.  
  68. joinmessage: "%playername% joined"
  69. quitmessage: "%playername% quit"
  70. spammessage: "You may only chat once every %interval% seconds."
  71.  
  72. defaultworld: world
  73. worlds:
  74. - title: TrixieWorld
  75. name: TrixieWorld
  76. maps:
  77. - type: FlatMapType
  78. title: Flat
  79. name: flat
  80. prefix: flat
  81. - type: KzedMapType
  82. title: Surface
  83. name: surface
  84. prefix: t
  85. - type: KzedMapType
  86. title: Cave
  87. name: cave
  88. prefix: ct
  89. # Example:
  90. #- title: Other World # With what name the world is displayed.
  91. # name: world_other # The actual name of the world (equal to your directory-name).
  92. # maps:
  93. # - type: KzedMapType # The type (or perspective) of the map. At the moment, there are no others than KzedMapType.
  94. # title: Surface # The name of the map that will be displayed.
  95. # name: surface # The actual name of the map (should be unique for this world).
  96. # prefix: t # The prefix of the tile-files that are generated.
  97. # icon: images/block_other.png # Sets a custom icon for the map. (optional)
  98. # - type: KzedMapType
  99. # title: Cave
  100. # name: cave
  101. # prefix: ct
  102.  
  103. # Enables debugging.
  104. #debuggers:
  105. # - class: org.dynmap.debug.LogDebugger
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement