12-19-2011, 07:46 PM
I was planning on submitting some sounds from a game called Killing Floor but there all in UAX format. What do I do?
UAX format?
|
12-19-2011, 07:46 PM
I was planning on submitting some sounds from a game called Killing Floor but there all in UAX format. What do I do?
12-19-2011, 08:07 PM
Use UModel to export the UAX files, with this in the command prompt:
Code: umodel.exe -export -sounds *FILENAME*.uax
I can't get it to work!?
I can never open it? (12-19-2011, 08:44 PM)SHADEDBZ Wrote: I can't get it to work!? Try the following: 1. Open notpad. 2. put RTB's code "umodel.exe -export -sounds *FILENAME*.uax" into the empty space. 3. File>Save As give it any name You want then add .bat. 4. Change "Save as type" to All Files. 5. Close notepad and put the .bat You just made into the same folder as the .uax and the UModel. 6. Double click on the .bat and it should run the script that RTB posted. Hope that works.
12-19-2011, 11:03 PM
I tried what you said and it acted like it was going to work, but stopped again!
12-19-2011, 11:12 PM
Hey Roxas, does that method work for any of RTB's command line programs or only UModel?
I only ask because command line is a pain to use and I can't figure out what to do in it most of the time. SHADEDBZ Wrote:I tried what you said and it acted like it was going to work, but stopped again! Sad That's to bad. (12-19-2011, 11:12 PM)Mighty Jetters Wrote: Hey Roxas, does that method work for any of RTB's command line programs or only UModel? Well I've been using it to extract files from .fpk. It's a life saver, because I can just put in multiple names and it will extract everything. For example: Code Wrote:fpktool -u 0000.fpk 0000 But anyways, I don't see a reason why it wouldn't work on other programs.
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. 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?)
12-20-2011, 01:14 AM
12-20-2011, 09:49 AM
I seriously did not know I could do that! Now there's probably hope for my upcoming series of model submissions!
12-20-2011, 10:58 AM
Yes! It worked, thanks!
12-23-2011, 03:34 PM
I have all the sounds from Killing Floor now! What's the best media sharing website to upload them to, in your opinion?
12-23-2011, 07:52 PM
They are .WAV! That's what they need to be right?
|
« Next Oldest | Next Newest »
|