def playerIcons(poi): if poi['id'] == 'Player': poi['icon'] = "http://overviewer.org/avatar/%s" % poi['EntityId'] return "Last known location for %s" % poi['EntityId'] def signFilter(poi): if poi['id'] == 'Sign': return "\n".join([poi['Text1'], poi['Text2'], poi['Text3'], poi['Text4']]) worlds['minecraft'] = "/home/minecraft/server/world" outputdir = "/home/minecraft/render/" markers = [ dict(name="Players", filterFunction=playerIcons), dict(name="Signs", filterFunction=signFilter) ] renders["day"] = { 'world': 'minecraft', 'title': 'Day', 'rendermode': 'smooth_lighting', 'markers': markers } renders["night"] = { 'world': 'minecraft', 'title': 'Night', 'rendermode': 'smooth_night', 'markers': markers }