chrome-rome
King
- Joined
- Jan 7, 2009
- Messages
- 620
Hi all,
I'm trying to make a policy like Meritocracy that gives a free great person. In game, I get the icon for the GP, but when I click it nothing happens. This results in a deadlocked game as I can't progress until I select my GP. Here is the code:
Please let me know what I need to adjust. Also, I have another policy that gives 2 GP:
It doesn't work either. Thansk.
I'm trying to make a policy like Meritocracy that gives a free great person. In game, I get the icon for the GP, but when I click it nothing happens. This results in a deadlocked game as I can't progress until I select my GP. Here is the code:
Spoiler :
Code:
<Row>
<ID>64</ID>
<Type>POLICY_MIXED_GOVERNMENT</Type>
<Description>TXT_KEY_NEWPOLICY_MIXED_GOVERNMENT</Description>
<Civilopedia>TXT_KEY_NEWPOLICY_MIXED_GOVERNMENT_TEXT</Civilopedia>
<Help>TXT_KEY_NEWPOLICY_MIXED_GOVERNMENT_HELP</Help>
<PolicyBranchType>POLICY_BRANCH_REPUBLIC</PolicyBranchType>
<CultureCost>10</CultureCost>
<GridX>3</GridX>
<GridY>3</GridY>
<NumFreeGreatPeople>1</NumFreeGreatPeople>
<IncludesOneShotFreeUnits>true</IncludesOneShotFreeUnits>
<PortraitIndex>55</PortraitIndex>
<IconAtlas>POLICY_ATLAS</IconAtlas>
<IconAtlasAchieved>POLICY_A_ATLAS</IconAtlasAchieved>
</Row>
Spoiler :
Code:
<Row>
<ID>99</ID>
<Type>POLICY_RADICAL_TRANSPARENCY</Type>
<Description>TXT_KEY_NEWPOLICY_RADICAL_TRANSPARENCY</Description>
<Civilopedia>TXT_KEY_NEWPOLICY_RADICAL_TRANSPARENCY_TEXT</Civilopedia>
<Help>TXT_KEY_NEWPOLICY_RADICAL_TRANSPARENCY_HELP</Help>
<PolicyBranchType>POLICY_BRANCH_VIRTUALDEMOCRACY</PolicyBranchType>
<CultureCost>10</CultureCost>
<GridX>2</GridX>
<GridY>3</GridY>
<GreatPeopleRateModifier>25</GreatPeopleRateModifier>
<NumFreeGreatPeople>2</NumFreeGreatPeople>
<IncludesOneShotFreeUnits>true</IncludesOneShotFreeUnits>
<PortraitIndex>55</PortraitIndex>
<IconAtlas>POLICY_ATLAS</IconAtlas>
<IconAtlasAchieved>POLICY_A_ATLAS</IconAtlasAchieved>
</Row>