Advertisement
masa-

Minecraft Overviewer configuration

Jul 14th, 2015
1,803
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.70 KB | None | 0 0
  1.  
  2. worlds["jomb"] = "/data/game_servers/minecraft/servers/jomb/world"
  3. outputdir = "/data/overviewer/jomb"
  4. texturepath = "/data/minecraft/tools/textures/1.8/1.8.zip"
  5.  
  6. nether_smooth = [Base(), EdgeLines(), Nether(), SmoothLighting(strength=0.6)]
  7. end_smooth = [Base(), EdgeLines(), SmoothLighting(strength=0.85, night=True)]
  8.  
  9.  
  10. ############ Renders ###############################
  11.  
  12. renders["jomb_overworld_smooth_upper-left_jpg"] = {
  13.     "world":        "jomb",
  14.     "title":        "JOMB (World), u-l",
  15.     "rendermode":       smooth_lighting,
  16.     "dimension":        "overworld",
  17.     "northdirection":   "upper-left",
  18.     "imgformat":        "jpg",
  19.     "imgquality":       "80",
  20.     "bgcolor":      "#000000"
  21. }
  22.  
  23. renders["jomb_overworld_smooth_night_upper-left_jpg"] = {
  24.     "world":        "jomb",
  25.     "title":        "JOMB (World, night), u-l",
  26.     "rendermode":       smooth_night,
  27.     "dimension":        "overworld",
  28.     "northdirection":   "upper-left",
  29.     "imgformat":        "jpg",
  30.     "imgquality":       "80",
  31.     "bgcolor":      "#000000",
  32. }
  33.  
  34. renders["jomb_nether_smooth_upper-left_jpg"] = {
  35.     "world":        "jomb",
  36.     "title":        "JOMB (Nether), u-l",
  37.     "rendermode":       nether_smooth,
  38.     "dimension":        "nether",
  39.     "northdirection":   "upper-left",
  40.     "imgformat":        "jpg",
  41.     "imgquality":       "80",
  42.     "bgcolor":      "#000000",
  43. }
  44.  
  45. renders["jomb_end_smooth_upper-left_jpg"] = {
  46.     "world":        "jomb",
  47.     "title":        "JOMB (End), u-l",
  48.     "rendermode":       end_smooth,
  49.     "dimension":        "end",
  50.     "northdirection":   "upper-left",
  51.     "imgformat":        "jpg",
  52.     "imgquality":       "80",
  53.     "bgcolor":      "#000000",
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement