View Full Version : Converting religion?


TheFourGuardian
Nov 25, 2005, 11:32 PM
I would like to add conversion as a possibility for a UN resolution, but have no idea what the commands for that would be. I've searched python, xml, and so on to no success, so does anyone have any ideas?

Davyd
Nov 26, 2005, 12:04 AM
Would the code for it be somewhere in the diplomacy files? You can request other civs to convert to your state religion, it must be in there somewhere.

Looking foward to it :)

TheFourGuardian
Nov 26, 2005, 12:05 AM
I checked there, but I found nothing of use.

Davyd
Nov 26, 2005, 12:15 AM
Maybe it would be something like this?

<Description>TXT_NAME_OF_DESCRIPTION</Description>
<iPopulationThreshold>51</iPopulationThreshold>
<iTradeRoutes>0</iTradeRoutes>
<bSecretaryGeneral>0</bSecretaryGeneral>
<bVictory>0</bVictory>
<bFreeTrade>0</bFreeTrade>
<bNoNukes>0</bNoNukes>
<ForceReligions>
<ForceReligion>
<ReligionType>RELIGION_HINDUISM</ReligionType>
<bForce>1</bForce>
</ForceReligion>
</ForceReligions>
</VoteInfo>

Maybe just replacing "Civic" with "Religion" will work. :p

TheFourGuardian
Nov 26, 2005, 08:40 AM
I was actually doing that before. Unfortunately, the term I used was one I had seen in Python somewhere: ReligionConvert, and that did not work at all.