Help Please (Mod Combining attempt)

Mynex

Warlord
Joined
Sep 30, 2010
Messages
287
So I'm attempting to combine many mods together... starting with 2 simple ones... or so I thought... ModBuddy doesn't report anything odd, builds successfully, mod shows up on game, but it doesn't work... so what's the beef? :s

Here's the xml
----
Code:
<GameData>
    <Defines>
        <Update>
            <Set Value="20"/>
            <Where Name="MAX_HIT_POINTS"/>
        </Update>
        <Update>
            <Set Value="100"/>
            <Where Name="MAX_CITY_HIT_POINTS"/>
        </Update>
        <Update>
            <Set Value="2"/>
            <Where Name="CITY_HIT_POINTS_HEALED_PER_TURN"/>
        </Update>
    </Defines>
    <PlayerOptions>
        <Row>
            <Type>PLAYEROPTION_SAFE_AUTOMATION</Type>
            <Description>TXT_KEY_PLAYER_OPTION_WORKERS_LEAVE_OLD_IMPS</Description>
            <Help>TXT_KEY_PLAYER_OPTION_WORKERS_LEAVE_OLD_IMPS_HELP</Help>
            <Default>true</Default>
        </Row>
    </PlayerOptions>
    <Units>
        <Update>
            <Where Class="UNITCLASS_WARRIOR"/>
            <Set Moves="5"/>
        </Update>
    </Units>
</GameData>

I have entirely too many 'little mod tweaks' that they're not showing all up in Civ 5 (a 25 mod limit list? no multi-page for downloaded/installedmods? WTH???) anyways, I wanted to combine many of them into 1 mod to make life easier... So any help with the above would be appreciated... I know I'm missing something simple... it's always the simple things. *sigh*

Thanks in advance.
 
Look at page 32 in Kael's guide. Do you have the code 'OnModActivated' etc listed in the properties portion of your mod project?
 
Back
Top Bottom