Q: How to add Happiness to Monuments?

BjoernLars

Warlord
Joined
Apr 8, 2005
Messages
270
Location
Anyang, Kyeonggi-do, South Korea
Greetings all,

I'm a first time Modder here jumping headfirst into the Modding world.

I am trying start working on the balancing issues of Happiness in Civ V and want to experiment with some ways to improve the overall balance.

My first step is to start adding a small Happiness bonus to the Monument.

Here is what my .XML text is so far:

<GameData>
<Buildings>
<Update>
<Where Type="BUILDING_MONUMENT" />
<Set Happiness="1" />
</Update>
</Buildings>
</GameData>

Can anybody help me with this? Many thanks!
 
are you having a problem? The xml looks fine.

you will still need to create a mod project, and add your xml file to it, make sure it is linked correctly and initialized correctly on the mod project's Action tab. This is pretty clearly explained in Kael's modding tutorial. you can find it in the Tutorials and reference sub forum.
 
Got it! Thanks for pointing me in the right direction Shiggs...

I had the wrong command under the Set column in the Actions Tab. I originally wrote "OnModActivate".

I guess the program doesn't highlight unknown commands or errors... :(
 
Top Bottom