The one thing I keep running into again and again is the sound for boba fetts gun. I put boba inside quite alot of my maps, and everytime I almost forget to fix his gun sound, because at first it seems to be working. But the sound Im actually hearing isnt the sound of his gun shooting, its the sound of his gun hitting something, which is an ambient sound you can hear if you shoot something close enough.
As it turns out the sound for his gun is inside the maps he appears in. The same thing applies for some of the other sounds too, especially the comments when the hereos enter the game or die. The most common one I use is
ReadDataFile("sound\\tat.lvl;tat2gcw")
which is the sound for mos eisley assault as you know, and it gets used alot in hero assault maps.
But the music for our level comes from this file too and we dont want to be sacked with mos assault music in all our mods, so to get bobas gun sound without the mos music I needed to load BOTH.
ReadDataFile("sound\\tat.lvl;tat2gcw")
ReadDataFile("sound\\dea.lvl;dea1gcw")
and then of course later on set my music to the death star music instead of tatooine with this
Hidden/Spoiler:
and this
Hidden/Spoiler:
I found the same kind of problems when adding the ATAT to a map, and had to include the sound file from hoth to get all the sounds in there.
Another example was when I included the ep2 jet trooper the first time, i couldnt get his rocket sound to work unless I added in the sound file from Geonosis, the only map he appears in. I later discovered that he uses the same sound as the ep3 jet trooper and so long as I have the ep3 loaded as well, even if im not using it, then the ep2 works ok so i stopped adding the sound from geonosis.
But ya... that seems to be part of the issue with sound.

