Skip to content

Instantly share code, notes, and snippets.

@brownan
Created January 22, 2012 04:20
Show Gist options
  • Save brownan/1655464 to your computer and use it in GitHub Desktop.
Save brownan/1655464 to your computer and use it in GitHub Desktop.
config example for docs
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