Leader background art/music

JollySam

Chieftain
Joined
Jul 20, 2010
Messages
8
Hello everyone,

I am in the process of creating a custom civilization using the 'Starter - New Civilization and Leader' file that comes with ModBuddy. I'm making progress, but I wonder if someone could let me know the XML code for determining the 'Create Game' leader portrait background (my custom civ only has a solid blue background), as well as the diplomacy background picture and the music?

I'd like my civilization to have the same music/art etc as the Romans, for example. I'm pretty sure I have to type in 'TrajanArt' (or whatever) somewhere, I'm just not sure where.

Thanks a lot,
JollySam
 
I'm by no means an expert, but it seems like I found out how to choose the music. It's in an artdef file. In the mod I'm currently analyzing (Sukritact's Ethiopia), I found it in Civilizations.artdef. This civ uses Sumeria's music.

Code:
<?xml version="1.0" encoding="UTF-8" ?>
<AssetObjects..ArtDefSet>
    <m_Version>
        <major>3</major>
        <minor>0</minor>
        <build>220</build>
        <revision>998</revision>
    </m_Version>
    <m_TemplateName text="Civilizations"/>
    <m_RootCollections>
        <Element>
            <m_CollectionName text="Civilization"/>
            <m_ReplaceMergedCollectionElements>false</m_ReplaceMergedCollectionElements>
            <Element>
                <m_Fields>
                    <m_Values/>
                </m_Fields>
                <m_ChildCollections>
                    <Element>
                        <m_CollectionName text="Audio"/>
                        <m_ReplaceMergedCollectionElements>false</m_ReplaceMergedCollectionElements>
                        <Element>
                            <m_Fields>
                                <m_Values>
                                    <Element class="AssetObjects..StringValue">
                                        <m_Value text="Sumeria"/>
                                        <m_ParamName text="XrefName"/>
                                    </Element>
                                </m_Values>
                            </m_Fields>
                            <m_ChildCollections/>
                            <m_Name text="Entry"/>
                            <m_AppendMergedParameterCollections>false</m_AppendMergedParameterCollections>
                        </Element>
                    </Element>
                </m_ChildCollections>
                <m_Name text="CIVILIZATION_SUK_ETHIOPIA"/>
                <m_AppendMergedParameterCollections>false</m_AppendMergedParameterCollections>
            </Element>
        </Element>
    </m_RootCollections>
</AssetObjects..ArtDefSet>
 
Top Bottom