Advertisement
munsking

gmap config

Sep 25th, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.05 KB | None | 0 0
  1. # overviewer.py --config=/home/scripts/gmaps/main.conf
  2.  
  3. worlds["muns"] = "/home/mcsrv/Minecraft/world"
  4. worlds["kempfe"] = "/home/mcsrv/Minecraft/kempfe"
  5.  
  6. renders["munsday"] = {
  7.     "world": "muns",
  8.     "title": "Muns Daytime",
  9.     "rendermode": smooth_lighting,
  10.     "dimension": "overworld",
  11. }
  12.  
  13. renders["munsnight"] = {
  14.     "world": "muns",
  15.     "title": "Muns Nighttime",
  16.     "rendermode": smooth_night,
  17.     "dimension": "overworld",
  18. }
  19.  
  20. renders["munscave"] = {
  21.     "world": "muns",
  22.     "title": "Muns Caves",
  23.     "rendermode": cave,
  24.     "dimension": "overworld",
  25. }
  26.  
  27. renders["kempfeday"] = {
  28.     "world": "kempfe",
  29.     "title": "kempfe Daytime",
  30.     "rendermode": smooth_lighting,
  31.     "dimension": "overworld",
  32. }
  33.  
  34. renders["kempfenight"] = {
  35.     "world": "kempfe",
  36.     "title": "kempfe Nighttime",
  37.     "rendermode": smooth_night,
  38.     "dimension": "overworld",
  39. }
  40.  
  41. renders["kempfecave"] = {
  42.     "world": "kempfe",
  43.     "title": "kempfe Caves",
  44.     "rendermode": cave,
  45.     "dimension": "overworld",
  46. }
  47.  
  48. outputdir = "/var/www/pics/gmap"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement