Does anyone know the title theme song for Rise from Erebus?

akatosh

Prince
Joined
Dec 2, 2012
Messages
405
I just downloaded this mod--pretty cool. I especially like the title music, but I can't find it in the Assets directory. Where is the song stored?

I am talking about the Rise from Erebus theme song, not the Fall Further theme.
 
Assets/sounds/soundtrack/something ;)

I think you're looking for one of these:
Code:
		<SoundData>
			<SoundID>SONG_OPENING_MENU</SoundID>
			[COLOR="Red"]<Filename>Sounds/Soundtrack/OpeningMenu</Filename>[/COLOR]
			<LoadType>STREAMED</LoadType>
			<bIsCompressed>1</bIsCompressed>
			<bInGeneric>1</bInGeneric>
		</SoundData>
		<SoundData>
			<SoundID>SONG_OPENING_MENU_FALL_FROM_HEAVEN</SoundID>
			[COLOR="Red"]<Filename>Sounds/Soundtrack/OpeningMenuFallFromHeaven</Filename>[/COLOR]
			<LoadType>STREAMED</LoadType>
			<bIsCompressed>1</bIsCompressed>
			<bInGeneric>1</bInGeneric>
		</SoundData>
		<SoundData>
			<SoundID>SONG_OPENING_MENU_FALL_FURTHER</SoundID>
			<Filename>Sounds/Soundtrack/OpeningMenuFallFurther</Filename>
			<LoadType>STREAMED</LoadType>
			<bIsCompressed>1</bIsCompressed>
			<bInGeneric>1</bInGeneric>
		</SoundData>
 
Top Bottom