Last active
June 15, 2020 10:38
-
-
Save ifvictr/8064c8a5d1e376e6205d7b3d5a809972 to your computer and use it in GitHub Desktop.
Overviewer config for Hack Club’s Minecraft server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server_dir = '~/server' | |
worlds['world'] = f'{server_dir}/world' | |
worlds['world_nether'] = f'{server_dir}/world_nether' | |
worlds['world_the_end'] = f'{server_dir}/world_the_end' | |
renders['world_normal'] = { | |
'world': 'world', | |
'title': 'Normal', | |
'rendermode': 'smooth_lighting' | |
} | |
renders['world_nether_normal'] = { | |
'world': 'world_nether', | |
'title': 'Normal', | |
'rendermode': 'nether_smooth_lighting' | |
} | |
# Taken from http://docs.overviewer.org/en/latest/config/#id1 | |
end_smooth_lighting = [Base(), EdgeLines(), SmoothLighting(strength=0.5)] | |
renders['world_the_end_normal'] = { | |
'world': 'world_the_end', | |
'title': 'Normal', | |
'rendermode': end_smooth_lighting, | |
# Only show the Main Island and its surroundings | |
'crop': (-500, -500, 500, 500) | |
} | |
outputdir = '~/map' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment