Created
January 22, 2012 04:20
-
-
Save brownan/1655464 to your computer and use it in GitHub Desktop.
config example for docs
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
worlds["survival"] = "/home/username/server/survivalworld" | |
worlds["creative"] = "/home/username/server/creativeworld" | |
render["survivalday"] = { | |
"world": "survival", | |
"title": "Survival Daytime", | |
"rendermode": smooth_lighting, | |
"dimension": "overworld", | |
} | |
render["survivalnight"] = { | |
"world": "survival", | |
"title": "Survival Daytime", | |
"rendermode": smooth_night, | |
"dimension": "overworld", | |
} | |
render["survivalnether"] = { | |
"world": "survival", | |
"title": "Survival Nether", | |
"rendermode": nether_smooth_lighting, | |
"dimension": "nether", | |
} | |
render["survivalspawnoverlay"] = { | |
"world": "survival", | |
"title": "Spawn Overlay", | |
"rendermode": spawn_overlay, | |
"dimension": "overworld", | |
"overlay": ["survivalday", "survivalnight"], | |
} | |
render["creative"] = { | |
"world": "creative", | |
"title": "Creative", | |
"rendermode": smooth_lighting, | |
"dimension": "overworld", | |
} | |
outputdir = "/home/username/mcmap" | |
textures = "/home/username/my_texture_pack.zip" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment