• We are currently performing site maintenance, parts of civfanatics are currently offline, but will come back online in the coming days. For more updates please see here.

Anyway to turn off Quick Combat after the map has started?

no, quick/slow combat is set at the start. civ5 has such a low number of actual combat sequences compared to previous versions that I usually leave combat animations on.
 
Do you play much in the modern era with aircraft? The animation is so long I usually leave it on quick.
 
Instead of using the quick combat option in game setup, you can set it in the xml. Open up Civ5GameOptions.xml and find this:

Code:
 <Row>
  <Type>GAMEOPTION_QUICK_COMBAT</Type> 
  <Description>TXT_KEY_GAME_OPTION_QUICK_COMBAT</Description> 
  <Help>TXT_KEY_GAME_OPTION_QUICK_COMBAT_HELP</Help> 
  </Row>

To change the default, just add a new line so it looks like this:

Code:
<Row>
  <Type>GAMEOPTION_QUICK_COMBAT</Type> 
  <Description>TXT_KEY_GAME_OPTION_QUICK_COMBAT</Description> 
  <Help>TXT_KEY_GAME_OPTION_QUICK_COMBAT_HELP</Help> 
  <Default>true</Default> 
  </Row>

Change your mind and want combat animations back on? Quit your game, back out your change and then load it up again.

The nice thing about modifying the xml is you don't have to go into advanced options to start a new game. Also the patch didn't reset the xml, which was nice. I wasn't sure if it would or not.
 
Thanks for the suggestion, elthrasher!

Up til now, I've just been quickly tapping the strategic view button twice to quickly resolve combat, like others have done. Yours seems a better solution.
 
You can also turn the quick combat option on or off on a running game through the FireTuner. This will disable achievements for that game, though, if you care about that.
 
Back
Top Bottom