Skip to content

Instantly share code, notes, and snippets.

@AHrubik
Created May 2, 2014 22:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AHrubik/c57214881caca988e49d to your computer and use it in GitHub Desktop.
Save AHrubik/c57214881caca988e49d to your computer and use it in GitHub Desktop.
Overviewer Config File
# This is a sample config file, meant to give you an idea of how to format your
# config file and what's possible.
# Define the path to your world here. 'My World' in this case will show up as
# the world name on the map interface. If you change it, be sure to also change
# the referenced world names in the render definitions below.
worlds['Solitary'] = "C:/Users/AHrubik/Desktop/Overviewer/Solitary"
# Define where to put the output here.
outputdir = "C:/Users/AHrubik/Desktop/Overviewer/output"
# This is an item usually specified in a renders dictionary below, but if you
# set it here like this, it becomes the default for all renders that don't
# define it.
# Try "smooth_lighting" for even better looking maps!
rendermode = "smooth_lighting"
renders["render1"] = {
'world': 'Solitary',
'title': 'Equitas - The Overworld',
'dimension': 'overworld',
'manualpois':[
{'id':'Stronghold',
'x':-701,
'y':64,
'z':-732,
'name':'Stronghold'}],
}
renders["render2"] = {
'world': 'Solitary',
'title': 'Equitas - The Nether | Height 96m',
'dimension': 'DIM-1',
'rendermode': [Base(), Nether(), EdgeLines(), SmoothLighting(strength=0.2), Depth(max=96),],
}
renders["render3"] = {
'world': 'Solitary',
'title': 'Equitas - The Nether | Height 64m',
'dimension': 'DIM-1',
'rendermode': [Base(), Nether(), EdgeLines(), SmoothLighting(strength=0.2), Depth(max=64),],
}
renders["render4"] = {
'world': 'Solitary',
'title': 'Equitas - The Nether | Height 32m',
'dimension': 'DIM-1',
'rendermode': [Base(), Nether(), EdgeLines(), SmoothLighting(strength=0.2), Depth(max=32),],
}
renders["render5"] = {
'world': 'Solitary',
'title': 'Equitas - The End',
'dimension': 'DIM1',
'rendermode': [Base(), Nether(), EdgeLines(), SmoothLighting(strength=0.2), Depth(max=32),],
}
renders["render6"] = {
'world': 'Solitary',
'title': 'Equitas - The Party Bus',
'dimension': 'DIM_SPACESTATION2',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment