Advertisement
masa-

Example config for MC Overviewer port for FTB DW20 1.6.4

Jul 19th, 2015
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.84 KB | None | 0 0
  1. worlds["[quad] FTB Direwolf20 1.6.4"] = "/data/game_servers/minecraft/servers/ftb_dw20_164/world"
  2. outputdir = "/data/overviewer/ftb_dw20_164"
  3. texturepath = "/data/minecraft/tools/textures/1.6.4_modded"
  4.  
  5. nether_smooth = [Base(), EdgeLines(), Nether(), SmoothLighting(strength=0.6)]
  6. end_smooth = [Base(), EdgeLines(), SmoothLighting(strength=0.85, night=True)]
  7.  
  8. ############ Renders ###############################
  9.  
  10. # Normal Overworld render
  11. renders["ftb_dw20_164_overworld_smooth_upper-left_jpg"] = {
  12.     'world':            '[quad] FTB Direwolf20 1.6.4',
  13.     'title':            'FTB DW20 (Overworld)',
  14.     'rendermode':       smooth_lighting,
  15.     'dimension':        'overworld',
  16.     'northdirection':   'upper-left',
  17.     'imgformat':        'jpg',
  18.     'imgquality':       '90',
  19.     'bgcolor':          '#000000'
  20. }
  21.  
  22. # Overworld night time render
  23. renders["ftb_dw20_164_overworld_smooth_night_upper-left_jpg"] = {
  24.     'world':            '[quad] FTB Direwolf20 1.6.4',
  25.     'title':            'FTB DW20 (Overworld, night)',
  26.     'rendermode':       smooth_night,
  27.     'dimension':        'overworld',
  28.     'northdirection':   'upper-left',
  29.     'imgformat':        'jpg',
  30.     'imgquality':       '90',
  31.     'bgcolor':          '#000000'
  32. }
  33.  
  34. # Nether render
  35. renders["ftb_dw20_164_nether_smooth_upper-left_jpg"] = {
  36.     'world':            '[quad] FTB Direwolf20 1.6.4',
  37.     'title':            'FTB DW20 (Nether)',
  38.     'rendermode':       nether_smooth,
  39.     'dimension':        'nether',
  40.     'northdirection':   'upper-left',
  41.     'imgformat':        'jpg',
  42.     'imgquality':       '90',
  43.     'bgcolor':          '#000000'
  44. }
  45.  
  46. # The End render
  47. renders["ftb_dw20_164_end_smooth_upper-left_jpg"] = {
  48.     'world':            '[quad] FTB Direwolf20 1.6.4',
  49.     'title':            'FTB DW20 (End)',
  50.     'rendermode':       end_smooth,
  51.     'dimension':        'end',
  52.     'northdirection':   'upper-left',
  53.     'imgformat':        'jpg',
  54.     'imgquality':       '90',
  55.     'bgcolor':          '#000000'
  56. }
  57.  
  58. # Twilight Forest render
  59. renders["ftb_dw20_164_twilightforest_smooth_upper-left_jpg"] = {
  60.     'world':            '[quad] FTB Direwolf20 1.6.4',
  61.     'title':            'FTB DW20 (Twilight Forest)',
  62.     'rendermode':       smooth_lighting,
  63.     'dimension':        'Twilight Forest',
  64.     'northdirection':   'upper-left',
  65.     'imgformat':        'jpg',
  66.     'imgquality':       '90',
  67.     'bgcolor':          '#000000'
  68. }
  69.  
  70. # Mystcraft render
  71. renders["ftb_dw20_164_MYST2_smooth_upper-left_jpg"] = {
  72.    'world':                '[quad] FTB Direwolf20 1.6.4',
  73.    'title':                'FTB DW20 (Mystcraft DIM 2)',
  74.    'rendermode':           smooth_lighting,
  75.    'dimension':            'DIM_MYST2',
  76.    'northdirection':       'upper-left',
  77.    'imgformat':            'jpg',
  78.    'imgquality':           '90',
  79.    'bgcolor':              '#000000'
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement