Page 1 of 1
GCW and CW sounds don't work together
Posted: Sun May 01, 2016 11:54 am
by Benoz
Hello Community,
sorry for asking so much lately, but I just couldn't find helpful posts.
I have a problem with my sounds. In my mod I use custom sounds (e.g. for the DC-15 Carbine, etc.)
They work absolutely great, in fact I added a lot of custom sounds yet.
I always loaded the sounds like this:
Code: Select all
ReadDataFile("dc:sound\\XXX.lvl;repcw")
ReadDataFile("sound\\dag.lvl;dag1cw")
Because else some vanilla sounds won't play.
Now I have a problem on Death Star. I have Rebel Katarn troopers fight there, so this means clones and rebels.
Now I have to load sounds from CW and GCW and custom sounds. But when I do this:
Code: Select all
ReadDataFile("dc:sound\\XXX.lvl;repcw")
ReadDataFile("sound\\dea.lvl;dea1cw")
ReadDataFile("sound\\dea.lvl;dea1gcw")
Some of the sounds just miss (sometimes weapon sounds, sometimes grenade sounds and sometimes VOs)
This is really annoying.
I even tried loding the sounds like this:
Code: Select all
ReadDataFile("dc:sound\\XXX.lvl;repcw")
ReadDataFile("sound\\dea.lvl;dea1gcw")
ReadDataFile("sound\\dea.lvl;dea1cw")
so the GCW sounds first, but nothing changed.
Please could somebody help me?
Thanks in advance,
-66
Re: GCW and CW sounds don't work together
Posted: Sun May 01, 2016 4:05 pm
by Deviss
i did gcw campaigns with republic side , so i did a shipped sounds from republic like voice, weapons etc i hope it be useful

:
Re: GCW and CW sounds don't work together
Posted: Sun May 01, 2016 6:33 pm
by Benoz
Deviss wrote:i did gcw campaigns with republic side , so i did a shipped sounds from republic like voice, weapons etc i hope it be useful

:
Does that mean you just made a new sound file for the republic/gcw with shipped sounds and loaded it with
dc: ?
And in what order did you load the sound files?
Re: GCW and CW sounds don't work together
Posted: Sun May 01, 2016 10:00 pm
by Deviss
The66Order66 wrote:Deviss wrote:i did gcw campaigns with republic side , so i did a shipped sounds from republic like voice, weapons etc i hope it be useful

:
Does that mean you just made a new sound file for the republic/gcw with shipped sounds and loaded it with
dc: ?
And in what order did you load the sound files?
oh sorry i forgot it xD
ReadDataFile("sound\\mus.lvl;mus1cross")---> gcw sound
ReadDataFile("dc:sound\\ABC.lvl;ABCcw")---> custom sounds
ReadDataFile("dc:sound\\CPN.lvl;CPNcw")---> shipped sound (republic voices and weapons sounds)
Re: GCW and CW sounds don't work together
Posted: Sun May 01, 2016 10:39 pm
by Marth8880
It's worth noting that the game does have a sound memory limit, and most stock sound lvls alone come pretty close to reaching this limit. What this means is that if you load a stock sound lvl, and try to load another large sound lvl, one of them won't be loaded.
Re: GCW and CW sounds don't work together
Posted: Mon May 02, 2016 4:02 am
by thelegend
Marth8880 wrote:It's worth noting that the game does have a sound memory limit, and most stock sound lvls alone come pretty close to reaching this limit. What this means is that if you load a stock sound lvl, and try to load another large sound lvl, one of them won't be loaded.
Isn't it possible to increase the game's sound limit?
Re: GCW and CW sounds don't work together
Posted: Mon May 02, 2016 4:03 am
by Marth8880
thelegend wrote:Isn't it possible to increase the game's sound limit?
I sure wish there were, bud. All you can do is use lower sample rates for sounds and optimize longer sounds to be shorter and thus use less memory.
Re: GCW and CW sounds don't work together
Posted: Mon May 02, 2016 4:10 am
by thelegend
Marth8880 wrote:I sure wish there were, bud. All you can do is use lower sample rates for sounds and optimize longer sounds to be shorter and thus use less memory.
Hm..that's a pity. Sometimes I wish Battlefront II would have been more upgraded somehow like other, older games so limits would no longer stand in our ways. The most annonying limits (in my opinion) are graphical limits, limits for effects, animation and sound limits.
Re: GCW and CW sounds don't work together
Posted: Mon May 02, 2016 6:30 am
by Benoz
Marth8880 wrote:It's worth noting that the game does have a sound memory limit, and most stock sound lvls alone come pretty close to reaching this limit. What this means is that if you load a stock sound lvl, and try to load another large sound lvl, one of them won't be loaded.
So that explains why some sounds just went missing. I give your method a try Dev. It definitely uses less space.
EDIT:
I noticed another weird thing. When I'm on Kashyyyk, I loaded the sounds like this:
Code: Select all
ReadDataFile("dc:sound\\XXX.lvl;repcw")
ReadDataFile("sound\\kas.lvl;kas1cw")
And when I munge and play it, I can only hear my custom sounds (blasters, grenades, etc.) but no sounds of Kashyyyk itself.
By that I mean the barcspeeder and the fightertanks don't have a sound or when a trooper moves on the ground you can't hear the footsteps.
Now when I load the sounds like this:
Code: Select all
ReadDataFile("sound\\kas.lvl;kas1cw")
ReadDataFile("dc:sound\\XXX.lvl;repcw")
I can only hear the Kashyyyk sounds but not my custom ones...
Is there anyway to fix this, or is this also because of the memory limit? My custom sound .lvl has 5.9MB btw
Re: GCW and CW sounds don't work together
Posted: Mon May 02, 2016 6:05 pm
by Deviss
The66Order66 wrote:Marth8880 wrote:It's worth noting that the game does have a sound memory limit, and most stock sound lvls alone come pretty close to reaching this limit. What this means is that if you load a stock sound lvl, and try to load another large sound lvl, one of them won't be loaded.
So that explains why some sounds just went missing. I give your method a try Dev. It definitely uses less space.
EDIT:
I noticed another weird thing. When I'm on Kashyyyk, I loaded the sounds like this:
Code: Select all
ReadDataFile("dc:sound\\XXX.lvl;repcw")
ReadDataFile("sound\\kas.lvl;kas1cw")
And when I munge and play it, I can only hear my custom sounds (blasters, grenades, etc.) but no sounds of Kashyyyk itself.
By that I mean the barcspeeder and the fightertanks don't have a sound or when a trooper moves on the ground you can't hear the footsteps.
Now when I load the sounds like this:
Code: Select all
ReadDataFile("sound\\kas.lvl;kas1cw")
ReadDataFile("dc:sound\\XXX.lvl;repcw")
I can only hear the Kashyyyk sounds but not my custom ones...
Is there anyway to fix this, or is this also because of the memory limit? My custom sound .lvl has 5.9MB btw
i have same problem, custom sounds dont work on Kashyyyk and Felucia :S
Re: GCW and CW sounds don't work together
Posted: Thu May 05, 2016 4:42 am
by Benoz
Deviss wrote:i have same problem, custom sounds dont work on Kashyyyk and Felucia :S
Hey Dev, I found a solution for Felucia though this is just a workaround.
If you load the files like this:
Code: Select all
ReadDataFile("dc:sound\\XXX.lvl;repcw")
ReadDataFile("sound\\cor.lvl;cor1cw")
ReadDataFile("sound\\fel.lvl;fel1cw")
It will load your custom sound and the sound of Felucia. I really don't know why this works.
The disadvantage of this workaround is you can't hear the vehicle sounds since the vehicles of Felucia aren't present on Coruscant.
Does anybody know how to fix this issue on Kashyyyk and Felucia once and for all?
Re: GCW and CW sounds don't work together
Posted: Sun May 08, 2016 8:39 am
by Deviss
The66Order66 wrote:Deviss wrote:i have same problem, custom sounds dont work on Kashyyyk and Felucia :S
Hey Dev, I found a solution for Felucia though this is just a workaround.
If you load the files like this:
Code: Select all
ReadDataFile("dc:sound\\XXX.lvl;repcw")
ReadDataFile("sound\\cor.lvl;cor1cw")
ReadDataFile("sound\\fel.lvl;fel1cw")
It will load your custom sound and the sound of Felucia. I really don't know why this works.
The disadvantage of this workaround is you can't hear the vehicle sounds since the vehicles of Felucia aren't present on Coruscant.
Does anybody know how to fix this issue on Kashyyyk and Felucia once and for all?
yeah for example on felucia disappear vehicles sounds and acklay :S