Hello dear Civfanactics,
I created my first Mod with Modbuddy. My goal was to nerf the ActionCharges of the Hero Units.
So I added an XML file to my Mod and did the following:
<GameInfo>
<Units_MODE>
<Update>
<Where UnitType="UNIT_HERO_ANANSI"/>
<Set>
<ActionCharges>4</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_ARTHUR"/>
<Set>
<ActionCharges>3</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_BEOWULF"/>
<Set>
<ActionCharges>4</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_HERCULES"/>
<Set>
<ActionCharges>3</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_HIMIKO"/>
<Set>
<ActionCharges>3</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_OYA"/>
<Set>
<ActionCharges>4</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_MAUI"/>
<Set>
<ActionCharges>2</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_SINBAD"/>
<Set>
<ActionCharges>4</ActionCharges>
</Set>
</Update>
</Units_MODE>
</GameInfo>
After that I added the XML to the "In-Game Actions" to update the Database, built the Mod and tested it. It showed up correctly In-Game but the changes didnt take effect. What did I forgot/wrong? Can anybody help me?
Cheers and thank you very much
NuDDen
I created my first Mod with Modbuddy. My goal was to nerf the ActionCharges of the Hero Units.
So I added an XML file to my Mod and did the following:
Spoiler :
<GameInfo>
<Units_MODE>
<Update>
<Where UnitType="UNIT_HERO_ANANSI"/>
<Set>
<ActionCharges>4</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_ARTHUR"/>
<Set>
<ActionCharges>3</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_BEOWULF"/>
<Set>
<ActionCharges>4</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_HERCULES"/>
<Set>
<ActionCharges>3</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_HIMIKO"/>
<Set>
<ActionCharges>3</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_OYA"/>
<Set>
<ActionCharges>4</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_MAUI"/>
<Set>
<ActionCharges>2</ActionCharges>
</Set>
<Where UnitType="UNIT_HERO_SINBAD"/>
<Set>
<ActionCharges>4</ActionCharges>
</Set>
</Update>
</Units_MODE>
</GameInfo>
After that I added the XML to the "In-Game Actions" to update the Database, built the Mod and tested it. It showed up correctly In-Game but the changes didnt take effect. What did I forgot/wrong? Can anybody help me?
Cheers and thank you very much
NuDDen