Example Config

Example Overviewer Configuration

Example on Linux Server:

import sys

sys.path.append("/srv/mineServer/bukkit/")
from poiMan import manPOIList

worlds["World"] = "/srv/mineServer/bukkit/world"

def townFilter(poi):
	if poi['id'] == 'Town':
		return poi['name']

renders["world_day"] = {
	"world": "World",
	"title": "World Day",
	'manualpois': manPOIList,
	
	'markers': [dict(name='Towns', filterFunction=townFilter, icon="icons/marker_town.png", checked="true")],
}

outputdir = "/var/www/html/maps"

Comments

Posts Quoted:
Reply
Clear All Quotes