Never_Again
knows his birth month

Posts: 917
Registered: 04-03 |
I think that .bat file will open three separate instances of prboom-plus at once. Try this instead:
code:
@echo off
START /WAIT glboom-plus -iwad doom2 -file sid.wad -playdemo sid1-uv
START /WAIT glboom-plus -iwad doom2 -file sid.wad -playdemo sid2-uv
START /WAIT glboom-plus -iwad doom2 -file sid.wad -playdemo sid3-uv
START /WAIT glboom-plus -iwad doom2 -file sid.wad -playdemo sid4-uv
The demos will need to be in the same dir as prboom-plus, and sid.wad too (or else in %DOOMWADDIR%). This .bat works as intended under XP/SP3.
As for "demo_extendedformat 1" it's for recording; for playback you need "-auto" on the CMD. In any case, vdgg's demos have no demo footer, so you'd need to add something like this to the list of pattern in your .cfg:
code:
demo_patternxxxx "Suspended in Dusk/(sid[1-4]-uv)\.lmp/doom2.wad|sid.wad"
or, better yet, queue up Never_Again's SiD demos: they have the footer and are a bit longer, too, so you get enough time to have a few beers with your pizza. :P
code:
@echo off
START /WAIT glboom-plus -playdemo sid01-na -auto
START /WAIT glboom-plus -playdemo sid02-na -auto
START /WAIT glboom-plus -playdemo sid03-na -auto
START /WAIT glboom-plus -playdemo sid04-na -auto
|