Battlezone II start up prob..
Moderator: LW Moderator
- Felix
- Addicted Member
- Posts: 103
- Joined: Sat Jan 15, 2005 10:39 am
- Location: Farther than you think...
Battlezone II start up prob..
when I started it up I got an error with some file called bzone.sym ... and then it quits..... does anyone have this prob?
T E <=block of text
X T
X T
- black
- Super Member
- Posts: 832
- Joined: Sat Oct 30, 2004 5:27 pm
- Location: Newfoundland
- Has thanked: 2 times
someone plz fix the unpack.bat please
@echo off
if not "%_4VER%"=="" goto CONVERT
4dos.com /e:2048 /d /c %0
echo.
goto END
:CONVERT
alias wunpack = "%_cwd\wunpack.exe"
for /R %x in (*.mp3) do (
if exist "%@name["%x"].wav" del "%@name["%x"].wav" >nul
echos converting %x
rename "%x" backlash.mp3 >nul
wunpack backlash.mp3 backlash.wav > nul
iff exist backlash.wav then
rename backlash.wav "%@name["%x"].wav" >nul
del backlash.mp3 >nul
echo ... done
else
rename backlash.mp3 "%x" >nul
echo ... failed
endiff
)
unalias wunpack
rewav.com
cls
cd WAV
del *.wav > nul
cd ..
:END
@echo off
if not "%_4VER%"=="" goto CONVERT
4dos.com /e:2048 /d /c %0
echo.
goto END
:CONVERT
alias wunpack = "%_cwd\wunpack.exe"
for /R %x in (*.mp3) do (
if exist "%@name["%x"].wav" del "%@name["%x"].wav" >nul
echos converting %x
rename "%x" backlash.mp3 >nul
wunpack backlash.mp3 backlash.wav > nul
iff exist backlash.wav then
rename backlash.wav "%@name["%x"].wav" >nul
del backlash.mp3 >nul
echo ... done
else
rename backlash.mp3 "%x" >nul
echo ... failed
endiff
)
unalias wunpack
rewav.com
cls
cd WAV
del *.wav > nul
cd ..
:END
- loki1985
- Super Member
- Posts: 925
- Joined: Fri Jun 18, 2004 8:58 am
- Location: South of Heaven
- Been thanked: 4 times
this will most propably not work, since it makes use of 4DOS.EXE which i think doesn't run in Windows 2000/XP...
all you have to do is to convert all .MP3-files to WAV files using e.g. RazorLame plus Lame.
after that, delete the MP3's and run REWAV.COM....
be sure to use some good conversion tool, not some big media player like WinAMP or this like.... RazorLame or CDex should do fine...
all you have to do is to convert all .MP3-files to WAV files using e.g. RazorLame plus Lame.
after that, delete the MP3's and run REWAV.COM....
be sure to use some good conversion tool, not some big media player like WinAMP or this like.... RazorLame or CDex should do fine...
- AtoMiC_PoTaTo
- Super Member
- Posts: 491
- Joined: Fri Aug 13, 2004 10:21 pm
- Location: Quebec - Canada
Dunno what this thread is about, and don't wanna read all that stuff but something cought my eye quite fast. There's a mistake in your unpack process..
should be more like
shouldn't it?
Code: Select all
iff exist backlash.wav then
rename backlash.wav "%@name["%x"].wav" >nul
Code: Select all
if exist backlash.wav then
rename backlash.wav "%@name["%x"].wav" >nul