Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- worlds['world'] = 'C:\Documents and Settings\Administrator\Application Data\.minecraft\saves\Huge World Revamped'
- outputdir = 'D:\httproot\images\minecraft\Huge World Revamped'
- showspawn = 'false'
- def playerIcons(poi):
- if poi['id'] == 'Player':
- poi['icon'] = 'http://cravatar.tomheinan.com/%s/20' % poi['EntityId']
- return 'Last known location for %s' % poi['EntityId']
- renders['normalrender'] = {
- 'world': 'world',
- 'title': 'Normal',
- 'rendermode': 'normal',
- 'northdirection': 'upper-right',
- 'markers': [
- dict(name='Show player(s)', filterFunction=playerIcons, createInfoWindow=True),
- ],
- }
- renders['smoothlightingrender'] = {
- 'world': 'world',
- 'title': 'Smooth Lighting',
- 'rendermode': 'smooth_lighting',
- 'northdirection': 'upper-right',
- 'markers': [
- dict(name='Show player(s)', filterFunction=playerIcons, createInfoWindow=True),
- ],
- }
- renders['smoothnightrender'] = {
- 'world': 'world',
- 'title': 'Smooth Night',
- 'rendermode': 'smooth_night',
- 'northdirection': 'upper-right',
- 'markers': [
- dict(name='Show player(s)', filterFunction=playerIcons, createInfoWindow=True),
- ],
- }
- renders['caverender'] = {
- 'world': 'world',
- 'title': 'Cave',
- 'rendermode': 'cave',
- 'northdirection': 'upper-right',
- 'markers': [
- dict(name='Show player(s)', filterFunction=playerIcons, createInfoWindow=True),
- ],
- }
- renders['nethersmoothlightingrender'] = {
- 'world': 'world',
- 'title': 'Nether Smooth Lighting',
- 'rendermode': 'nether_smooth_lighting',
- 'northdirection': 'upper-right',
- 'markers': [
- dict(name='Show player(s)', filterFunction=playerIcons, createInfoWindow=True),
- ],
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement