Disable golden age/"who's winning" popups.

Chaingunfighter

Chieftain
Joined
Jun 6, 2015
Messages
4
I'm trying to do some testing involved with AI-only games over a long span of time. Because the turns take awhile, I've opted to run the game in the background. The problem is that annoying notifications such as the "Golden Age" popup or "Who's got the most production/soldiers/gold/whatever" come up periodically and block the game from continuing.

I'm wondering what the lua necessary to disable these popups is. The mod "Battle Royale Data" contains an options menu allowing the popups to be disabled, so I know it can be done, but the mod cannot be used concurrently with Infoaddict (which I intend to use) and also has a lot of data processing and other features I do not want to use. It doesn't help that the DLL required to use the mod is currently broken.
 
Alternatively, this also in practice prevents the "who's winning" popups from appearing. Change the number to X and you won't interrupt you for X turns.

Code:
	<Defines>
		<Update>
			<Where Name="PROGRESS_POPUP_TURN_FREQUENCY"/>
			<Set Value="1000"/>
		</Update>
	</Defines>
 
Top Bottom