Im making sound files for Fallout 2.
My new sounds lock up the game when it tries to play them.
Original sounds were: 22500 khz, 16 bit, (mono/stereo unknown).
Im using the Snd2Acm.exe utility to convert files. The utility doesnt seem to have a problem converting them.
- Should my sound files be smaller than the originals?
- Should I make my sound files 8bit instead of 16bit?
- If not, should I specify both '-wav' and '-8' flags for the utility?
(current syntax: snd2acm -wav *.wav)
-----
Another question:
Is there a file in the master.dat which specifies the current sound definitions?
- Can it be modified or does it have hardcoded components?
- Can I add new sounds (such as another energy weapon, with a burst mode)?
ACK, acm sound problems
- Sirgalahadwizard
- Vault Dweller
- Posts: 151
- Joined: Wed Apr 24, 2002 3:56 am
- Location: 7th floor of the west-tek facility.
-
- Scarf-wearing n00b
- Posts: 33
- Joined: Tue May 28, 2002 12:44 pm
- Location: Krasnoyarsk, Russian Wasteland
- Contact:
Re: ACK, acm sound problems
Try to covnert these ACMs back to WAV format with acm2wav. If the decompression succeeds, the Fallout itself should not have any problem playing your sounds. But to install new sound effects into Fallout you need to alter data\sound\sfx\sndlist.lst file (see below).Sirgalahadwizard wrote:My new sounds lock up the game when it tries to play them.
- In most cases, the ACM files are smaller than the original sound files.Sirgalahadwizard wrote:- Should my sound files be smaller than the originals?
- Should I make my sound files 8bit instead of 16bit?
- If not, should I specify both '-wav' and '-8' flags for the utility?
(current syntax: snd2acm -wav *.wav)
- 16bit WAVs are preferred.
- snd2acm file.wav file.acm is enough.
The data\sound\sfx\sndlist.lst list file contains information about all sound effects in Fallout2. If you modify some of the ACMs, or add new sounds, you need to modify this list file, otherwise the game can refuse to play some of the ACMs.Sirgalahadwizard wrote:Is there a file in the master.dat which specifies the current sound definitions?
- Can it be modified or does it have hardcoded components?
The simplest way to modify this list-file is to use regsnd utility - it can find all changes in ACMs and record them into sndlist.lst.
- Sirgalahadwizard
- Vault Dweller
- Posts: 151
- Joined: Wed Apr 24, 2002 3:56 am
- Location: 7th floor of the west-tek facility.