Advertisement
EvilSupahFly

Win32 Overviewer Config file

Feb 21st, 2013
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. worlds['world'] = 'C:\Documents and Settings\Administrator\Application Data\.minecraft\saves\Huge World Revamped'
  2. outputdir = 'D:\httproot\images\minecraft\Huge World Revamped'
  3.  
  4. showspawn = 'false'
  5.  
  6. def playerIcons(poi):
  7. if poi['id'] == 'Player':
  8. poi['icon'] = 'http://cravatar.tomheinan.com/%s/20' % poi['EntityId']
  9. return 'Last known location for %s' % poi['EntityId']
  10.  
  11. renders['normalrender'] = {
  12. 'world': 'world',
  13. 'title': 'Normal',
  14. 'rendermode': 'normal',
  15. 'northdirection': 'upper-right',
  16. 'markers': [
  17. dict(name='Show player(s)', filterFunction=playerIcons, createInfoWindow=True),
  18. ],
  19. }
  20.  
  21. renders['smoothlightingrender'] = {
  22. 'world': 'world',
  23. 'title': 'Smooth Lighting',
  24. 'rendermode': 'smooth_lighting',
  25. 'northdirection': 'upper-right',
  26. 'markers': [
  27. dict(name='Show player(s)', filterFunction=playerIcons, createInfoWindow=True),
  28. ],
  29. }
  30.  
  31. renders['smoothnightrender'] = {
  32. 'world': 'world',
  33. 'title': 'Smooth Night',
  34. 'rendermode': 'smooth_night',
  35. 'northdirection': 'upper-right',
  36. 'markers': [
  37. dict(name='Show player(s)', filterFunction=playerIcons, createInfoWindow=True),
  38. ],
  39. }
  40.  
  41. renders['caverender'] = {
  42. 'world': 'world',
  43. 'title': 'Cave',
  44. 'rendermode': 'cave',
  45. 'northdirection': 'upper-right',
  46. 'markers': [
  47. dict(name='Show player(s)', filterFunction=playerIcons, createInfoWindow=True),
  48. ],
  49. }
  50.  
  51. renders['nethersmoothlightingrender'] = {
  52. 'world': 'world',
  53. 'title': 'Nether Smooth Lighting',
  54. 'rendermode': 'nether_smooth_lighting',
  55. 'northdirection': 'upper-right',
  56. 'markers': [
  57. dict(name='Show player(s)', filterFunction=playerIcons, createInfoWindow=True),
  58. ],
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement