Mod to reduce AI Asking for Trade Deals

Lohit

Chieftain
Joined
Nov 13, 2016
Messages
85
Hi Everybody,

Hope you are having a good weekend.
I have a quick question. I noticed even in vanilla game, almost each turn AI prompts either for trade deals or for some other reasons.
Is there any current mod that addresses this thing? It's even worse if I use the mod where I add like 30 Civs on earth map. In this each turn I get at least 2-3 prompts from AI for trade deals. After sometime it gets annoying.
Anybody aware of any mod or can help me build one? :)

- L
 
The droid looking for is:
Code:
UPDATE GlobalParameters SET VALUE = xx WHERE Name = 'AI_TURNS_BETWEEN_TRADES';

Make a mod with that line of code in a .sql file, changing xx to the number of turns you want between trades.

Alternatively, you could edit steamapps\common\Sid Meier's Civilization VI\Base\Assets\Gameplay\Data\GlobalParameters.xml; search for AI_TURNS_BETWEEN_TRADES and change the number there (IIRC, the default is 3).

Making yourself a mod is better, because any updates to the game are likely to overwrite your change in the xml file.
 
The droid looking for is:
Code:
UPDATE GlobalParameters SET VALUE = xx WHERE Name = 'AI_TURNS_BETWEEN_TRADES';

Make a mod with that line of code in a .sql file, changing xx to the number of turns you want between trades.

Alternatively, you could edit steamapps\common\Sid Meier's Civilization VI\Base\Assets\Gameplay\Data\GlobalParameters.xml; search for AI_TURNS_BETWEEN_TRADES and change the number there (IIRC, the default is 3).

Making yourself a mod is better, because any updates to the game are likely to overwrite your change in the xml file.
Thanks alot brother. Let me give it a shot :)
 
Back
Top Bottom