Possible to disable Research Agreements?

ThunderLizard2

Warlord
Joined
Oct 6, 2010
Messages
269
Is there a check-box or other way to disable RAs? Civ IV had the option to block either/both Tech Trades and Tech Brokering. Is there a mod that doesn't allow RAs?
 
Moderator Action: Moved to Creation & Customization
 
XML version (disclaimer: double check syntax before using, as I have not used xml formatting for a very long time):
Code:
<GameData>
   <Technologies>
      <Update>
         <Set ResearchAgreementTradingAllowed = false/>
         <Where Type = "TECH_EDUCATION"/>
      </Update>
   </Technologies>
</GameData>

SQL version:
Code:
UPDATE Technologies SET ResearchAgreementTradingAllowed = 0 WHERE Type = 'TECH_EDUCATION';

Spoiler :
One option is clearly less cumbersome than the other.... :lol:


Research agreements are "unlocked" upon the completion of Education (technology), so all we will need to do is to disable the attribute from the Technologies table.

Hopefully that answers your query :).
 
Top Bottom