lolocoster
Chieftain
- Joined
- Jul 4, 2010
- Messages
- 45
Making my first mod, just a little test to update a building and see if I can buff it. I pick the granary since that would be the easiest to test since its one of the first buildings you can build.
I read the guide and learn how to use <update> tags, built the mod with no problems. The I load it up in game, and nothing's changed
why?
Am I forgetting something?
If anyone wants to take a look at it and check it, its under "Granary Buff Test" on the browser
I read the guide and learn how to use <update> tags, built the mod with no problems. The I load it up in game, and nothing's changed

Spoiler :

Am I forgetting something?
If anyone wants to take a look at it and check it, its under "Granary Buff Test" on the browser
Code:
<GameData>
<Buildings>
<Update>
<Set FoodKept="20"/>
<Where Type="BUILDING_GRANARY"/>
</Update>
<Update>
<Set Yield="4"/>
<Where Type="BUILDING_GRANARY"/>
</Update>
<Update>
<Set Cost="150"/>
<Where Type="BUILDING_GRANARY"/>
</Update>
<Update>
<Set GoldMaintenance="3"/>
<Where Type="BUILDING_GRANARY"/>
</Update>
</Buildings>
<Language_en_US>
<Row Tag="TXT_KEY_BUILDING_GRANARY_HELP">
<Text> 20% of[ICON_FOOD] is carried over after a new [ICON_CITIZEN] is born.</Text>
</Row>
</Language_en_US>
</GameData>