• 📚 Admin Project Update: Added a new feature to PictureBooks.io called Story Worlds. It lets your child become the hero of beloved classic tales! Choose from worlds like Alice in Wonderland, Wizard of Oz, Peter Pan, The Jungle Book, Treasure Island, Arabian Nights, or Robin Hood. Give it a try and let me know what you think!

[BNW] Background tracks for Civilization V

Should I relesae some of my personally created tracks to Civ V?


  • Total voters
    6
  • Poll closed .

Bangra 7

The Port Of Call
Joined
Aug 28, 2008
Messages
226
Location
Raleigh, North Carolina
How do I add background tracks that aren't diplomacy music to my new civilization in Civ V?

I created twelve ambient songs - six peace and six war - to go along with my civ's diplomacy tracks. And I can't, for the life of me, figure out how to combine those with the standard background music in Civ V.

I am trying to do this in SQL, but it just won't work. Any ideas are welcome.
 
I have done it in XML before. The code I have below is for a "soundtrack for a civ". I think I reverse engineered this code, so I not 100% sure if this is how the syntax is supposed to be.

Code:
<GameData>
    <Audio_Sounds>
        <Row>
            <SoundID>SND_LEADER_MUSIC_JOE_PEACE_1</SoundID>
            <Filename>PeaceTheme_Joe_One</Filename>
            <LoadType>DynamicResident</LoadType>
        </Row>
        <Row>
            <SoundID>SND_LEADER_MUSIC_JOE_PEACE_2</SoundID>
            <Filename>PeaceTheme_JOE_Two</Filename>
            <LoadType>DynamicResident</LoadType>
        </Row>
    </Audio_Sounds>
    <Audio_2DSounds>
        <!--Repeating Soundtrack for the Bionicles-->
        <Row>
            <ScriptID>SONG_JOEBOB_PEACE_1</ScriptID>
            <SoundID>SND_LEADER_MUSIC_JOE_PEACE_1</SoundID>
            <SoundType>GAME_MUSIC</SoundType>
            <MinVolume>40</MinVolume>
            <MaxVolume>40</MaxVolume>
            <IsMusic>True</IsMusic>
        </Row>
        <Row>
            <ScriptID>SONG_JOEBOB_PEACE_2</ScriptID>
            <SoundID>SND_LEADER_MUSIC_JOE_PEACE_2</SoundID>
            <SoundType>GAME_MUSIC</SoundType>
            <MinVolume>40</MinVolume>
            <MaxVolume>40</MaxVolume>
            <IsMusic>True</IsMusic>
        </Row>
    </Audio_2DSounds>
    <Civilizations>
        <Row>
            <Type>CIVILIZATION_JOE</Type>
            <!-- More stuff Here -->
            <SoundtrackTag>JOEBOB</SoundtrackTag>
        </Row>
    </Civilizations>
</GameData>

Also, after I made all of that, I found this link, so use this too https://forums.civfanatics.com/threads/making-a-custom-leader-use-custom-music.493367/
 
I have done it in XML before. The code I have below is for a "soundtrack for a civ". I think I reverse engineered this code, so I not 100% sure if this is how the syntax is supposed to be.

Code:
<GameData>
    <Audio_Sounds>
        <Row>
            <SoundID>SND_LEADER_MUSIC_JOE_PEACE_1</SoundID>
            <Filename>PeaceTheme_Joe_One</Filename>
            <LoadType>DynamicResident</LoadType>
        </Row>
        <Row>
            <SoundID>SND_LEADER_MUSIC_JOE_PEACE_2</SoundID>
            <Filename>PeaceTheme_JOE_Two</Filename>
            <LoadType>DynamicResident</LoadType>
        </Row>
    </Audio_Sounds>
    <Audio_2DSounds>
        <!--Repeating Soundtrack for the Bionicles-->
        <Row>
            <ScriptID>SONG_JOEBOB_PEACE_1</ScriptID>
            <SoundID>SND_LEADER_MUSIC_JOE_PEACE_1</SoundID>
            <SoundType>GAME_MUSIC</SoundType>
            <MinVolume>40</MinVolume>
            <MaxVolume>40</MaxVolume>
            <IsMusic>True</IsMusic>
        </Row>
        <Row>
            <ScriptID>SONG_JOEBOB_PEACE_2</ScriptID>
            <SoundID>SND_LEADER_MUSIC_JOE_PEACE_2</SoundID>
            <SoundType>GAME_MUSIC</SoundType>
            <MinVolume>40</MinVolume>
            <MaxVolume>40</MaxVolume>
            <IsMusic>True</IsMusic>
        </Row>
    </Audio_2DSounds>
    <Civilizations>
        <Row>
            <Type>CIVILIZATION_JOE</Type>
            <!-- More stuff Here -->
            <SoundtrackTag>JOEBOB</SoundtrackTag>
        </Row>
    </Civilizations>
</GameData>

Also, after I made all of that, I found this link, so use this too https://forums.civfanatics.com/threads/making-a-custom-leader-use-custom-music.493367/

Thank you. I am browsing through the link you shared now!

Also, I LOVE your username!
 
Back
Top Bottom