dynmap/web/config.js

16 lines
628 B
JavaScript
Raw Normal View History

var config = {
2010-12-27 11:58:57 +01:00
tileUrl: 'tiles/',
updateUrl: 'up/', // For Apache and lighttpd
2011-01-20 23:29:38 +01:00
// updateUrl: 'up.aspx?path=', // For IIS
2010-12-27 11:58:57 +01:00
updateRate: 2000, // Seconds the map should poll for updates. (Seconds) * 1000. The default is 2000 (every 2 seconds).
showPortraitsOnMap: true,
showPortraitsInPlayerList: true,
showPlayerNameOnMap: false,
defaultMap: 'defaultmap',
maps: {
'defaultmap': new DefaultMapType(),
'cavemap': new CaveMapType()
},
tileWidth: 128,
tileHeight: 128
};