Advertisement
Guest User

Config

a guest
Jul 25th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. # All paths in this configuration file are relative to Dynmap's data-folder: minecraft_server/plugins/dynmap/
  2.  
  3. # All map templates are defined in the templates directory
  4. # To use the HDMap very-low-res (2 ppb) map templates as world defaults, set value to vlowres
  5. # The definitions of these templates are in normal-vlowres.txt, nether-vlowres.txt, and the_end-vlowres.txt
  6. # To use the HDMap low-res (4 ppb) map templates as world defaults, set value to lowres
  7. # The definitions of these templates are in normal-lowres.txt, nether-lowres.txt, and the_end-lowres.txt
  8. # To use the HDMap hi-res (16 ppb) map templates (these can take a VERY long time for initial fullrender), set value to hires
  9. # The definitions of these templates are in normal-hires.txt, nether-hires.txt, and the_end-hires.txt
  10. # To use the HDMap low-res (4 ppb) map templates, with support for boosting resolution selectively to hi-res (16 ppb), set value to low_boost_hi
  11. # The definitions of these templates are in normal-low_boost_hi.txt, nether-low_boost_hi.txt, and the_end-low_boost_hi.txt
  12. # To use the HDMap hi-res (16 ppb) map templates, with support for boosting resolution selectively to vhi-res (32 ppb), set value to hi_boost_vhi
  13. # The definitions of these templates are in normal-hi_boost_vhi.txt, nether-hi_boost_vhi.txt, and the_end-hi_boost_vhi.txt
  14. # To use the HDMap hi-res (16 ppb) map templates, with support for boosting resolution selectively to xhi-res (64 ppb), set value to hi_boost_xhi
  15. # The definitions of these templates are in normal-hi_boost_xhi.txt, nether-hi_boost_xhi.txt, and the_end-hi_boost_xhi.txt
  16. deftemplatesuffix: hires
  17.  
  18. # Map storage scheme: only uncommoent one 'type' value
  19. # filetree: classic and default scheme: tree of files, with all map data under the directory indicated by 'tilespath' setting
  20. # sqlite: single SQLite database file (this can get VERY BIG), located at 'dbfile' setting (default is file dynmap.db in data directory)
  21. # mysql: MySQL database, at hostname:port in database, accessed via userid with password
  22. storage:
  23. # Filetree storage (standard tree of image files for maps)
  24. # type: filetree
  25. # SQLite db for map storage (uses dbfile as storage location)
  26. #type: sqlite
  27. #dbfile: dynmap.db
  28. # MySQL DB for map storage (at 'hostname':'port' in database 'database' using user 'userid' password 'password' and table prefix 'prefix'
  29. type: mysql
  30. hostname: 'localhost'
  31. port: 3306
  32. database: 'alaurin_base'
  33. userid: 'root'
  34. password: 'alaurin'
  35. prefix: ""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement