[R&F] How to turn off Golden/Dark Age?

Astacius

Chieftain
Joined
Aug 14, 2017
Messages
15
Is there any way to do that? I don't want to turn off the entire expansion but only this feature as it sucks in current patch. Maybe there is some tweak in game options in game folder or in console, like setting normal age for score from 0 to 999999? This way everyone would have a normal age all the time..
Or.. if there is no such an option, maybe there is a way just to turn off visual effects of dark/golden era? they look terrible and game is awful ugly
 
Yes they should remove the screen colour changing of make it optional as that is a real no-no. I love the look of this game as its usually nice and bright and colourful, I dont want a dark screen. That will really put me off playing.
 
Yeah I have stopped playing because of that. I am waiting for some patch to fix this
 
Yeah I have stopped playing because of that. I am waiting for some patch to fix this
Edit this file "D:\Program Files (x86)\Steam\steamapps\common\Sid Meier's Civilization VI\DLC\Expansion1\UI\Additions\EraCompletePopup.lua"
In function OnShow():
Code:
if (gameEras:HasGoldenAge(localPlayerID)) then
    Events.EnableColorKey("golden_age_colorkey", 0.6, 2);
elseif (gameEras:HasDarkAge(localPlayerID)) then
    Events.EnableColorKey("dark_age_colorkey", 0.8, 2);    --- Replace this line with "Events.DisableColorKey(2);" just like below
else
    Events.DisableColorKey(2);
end
 
Edit this file "D:\Program Files (x86)\Steam\steamapps\common\Sid Meier's Civilization VI\DLC\Expansion1\UI\Additions\EraCompletePopup.lua"
In function OnShow():
Code:
if (gameEras:HasGoldenAge(localPlayerID)) then
    Events.EnableColorKey("golden_age_colorkey", 0.6, 2);
elseif (gameEras:HasDarkAge(localPlayerID)) then
    Events.EnableColorKey("dark_age_colorkey", 0.8, 2);    --- Replace this line with "Events.DisableColorKey(2);" just like below
else
    Events.DisableColorKey(2);
end
Big thanks for this! Btw, it even works if you just replace the dark age with the golden age colorkey value.
 
Back
Top Bottom