12-20-2011, 12:30 AM
Are you sure that you're replacing the *FILENAME*.uax with whatever the file's called?
Either way, this will work.
Paste that in a TXT file, rename it to UModelSounds.bat, and run it in the same folder as both UModel and the sound effects, and it should output all of the sounds into separate folders, as WAV files.
And try this out, too, Roxas358:
Save it in a TXT and call it FPKUnpack.bat... though the file name honestly doesn't matter. That will unpack all FPK files into separate folders!
(Don'tcha just love batch scripts?)
Either way, this will work.
Code:
for /f %%a IN ('dir /b *.uax') do umodel.exe -export -sounds %%a
Paste that in a TXT file, rename it to UModelSounds.bat, and run it in the same folder as both UModel and the sound effects, and it should output all of the sounds into separate folders, as WAV files.
And try this out, too, Roxas358:
Code:
for /f %%a IN ('dir /b *.fpk') do fpktool.exe -u %%a %%a_unpack
Save it in a TXT and call it FPKUnpack.bat... though the file name honestly doesn't matter. That will unpack all FPK files into separate folders!
(Don'tcha just love batch scripts?)