
I’ve been playing a lot of Civilization 6 recently and I love it dearly. It’s not perfect though. Nothing is, of course, but Civ 6 also suffers because it’s a strategy game so it has all kinds of problems with its AI. When I first started writing a critique of what does and doesn’t work when it comes to the AI, I rather lazily typed out something like that previous sentence: has there ever been a strategy game with AI that is praiseworthy rather than passable? There’s a part of me that has become an apologist for clumsy AI routines in strategy games.
Here are a few artificial intelligences that need the fewest apologies.

I have played Civilization [official site] games as long as there have been Civilization games. I have always enjoyed them. I have always hated winning them. … [visit site to read more]

Though Adam was the first to settle in the brave new world of Civilization 6 [official site], Alec and Pip have since spent the weekend establishing their own outposts in Sidland. The three of them now form an uneasy alliance to discuss the strengths and failings of the game.
Grievances are aired at length about its new Diplomacy system, jumbled UI and opaque nature, while its vibrant look and elaborate nature are praised. And has learning to play Civ become like learning to play Dota? Let us parley. … [visit site to read more]

Now that I’m past the first 100 turns political offers seem to be turning up with greater frequency. I hate negotiating with AI civilizations so I have decided to appoint former Manchester United manager, Sir Alex Ferguson as my diplomatic advisor. I cannot afford actual Alex Ferguson so I am, instead, opening his book, A Year In The Life: The Manager’s Diary, at random and reading until relevant advice presents itself.

As I predicted, so it shall soon come to pass. The same game in no less than four slots in the Steam chart (comprising, as always, those games which sold best over the past week). Out, damn top-spot hoggers. … [visit site to read more]

Alice O’Connor, we would have words. In fairness, Civilization VI [official site] did> have a smooth launch – it’s only post-launch that things have gone ever so slightly wrong. It may not even be the game’s fault as such. The problem is that good old Windows has decided that Civ VI is a threat to something other than getting to bed at a sensible hour, and for many people this is preventing the game from loading.
There is a fix, fortunately, but I’ll only share it with you if you pay me 184 gold per turn and give me all your Tea and Uranium. … [visit site to read more]
We're still waiting on word from Firaxis about when we can expect mod tools, but all the loose Lua and XML files hanging out in Civilization 6's directories already give us the opportunity to do some good tweaking. Mostly thanks to the eagle eyes of the Civit subreddit, here are a few ways to customize Civ 6 to your liking and get it running better. (Also read our Civilization 6 review if you haven't already we like it a lot.)
As always, update your video drivers if you haven't recently. But if you've done all the standard troubleshooting and just getting to the Civ 6 main menu is still a long process, or it hangs on the way there, Windows Defender may be causing your grief. It definitely was for me: before I added an exception, loading the menu took ages and it would hang if I alt-tabbed.
To create a Windows Defender exception in Windows 10, open your PC's settings from the Start Menu. Click on 'Update & Security' and then select 'Windows Defender' in the side menu. Select 'Add an Exclusion' and choose to exclude a folder. Select the whole Civilization 6 install folder if it's installed to the default Steam directory, that'll be: C:\Program Files (x86)\Steam\steamapps\common\Sid Meier's Civilization VI.
And that's it. If Windows Defender was your problem, the main menu should now load much faster and it ought to be a little more forgiving about alt-tabbing. If that doesn't work, Reddit user LoadTimes has some other suggestions.
It's easy to disable the main intro video it's in the options menu, under 'Application' but also getting rid of the logo splash screens is slightly trickier. The trick comes from Reddit account Civ6LogoSkip, which is a very specific account to have, but a very useful one to us.
Navigate to \Base\Platforms\Windows\Movies in the Civilization 6 install directory see the fix above if you don't know where to look, or right click on the game in your Steam library, then select Properties > Local Files > Browse Local Files. Unfortunately, just deleting logos.bk2 will cause Civ 6 to hang while loading. Instead, we have to replace it with a blank video.
Rename logos.bk2 to something else, and then either make a copy of WipeRight.bik and rename it logos.bk2 to replace the logos with a brief pattern, or (even better) download this blank bik video and use it instead.
Reddit user Xacius has the details on this tweak. First, unbind W and A in the settings so you don't accidentally attack when you mean to move the camera. Now navigate to Civ 6's UI directory ([Your Install Directory]\Base\Assets\UI) and open the file WorldInput.lua with a text editor (WordPad works fine). Search for 'DefaultKeyDownHandler' to find the function we want to edit. You'll see four if/then statements which handle input from the arrow keys: Keys.VK_UP, Keys.VK_RIGHT, Keys.VK_DOWN, Keys.VK_LEFT. To add WASD control, we just need to tell it to also check if the WASD keys are pressed.
Here's how the 'if' statements should look when you've edited them:
if( uiKey == Keys.VK_UP or uiKey == Keys.W ) thenif( uiKey == Keys.VK_RIGHT or uiKey == Keys.D ) thenif( uiKey == Keys.VK_DOWN or uiKey == Keys.S ) thenif( uiKey == Keys.VK_LEFT or uiKey == Keys.A ) then
Now find the 'DefaultKeyUpHandler' function and make the same change, save the file and try it out. For more on how to muck with the controls, check out Xacius's comprehensive post.
This is another tweak from Xacius. Open WorldInput.lua (in the folder \Base\Assets\UI) and search for the variable local PAN_SPEED. The line should look like this:
local PAN_SPEED :number = 1;
Just change the number to 2 to get around the map faster.
Settings for fonts and their sizes are stored in Civ6_FontStyles_EFIGS.xml, which you'll find in \Base\Assets\UI\Fonts. Open the file with a text editor to start mucking with it, but save a backup first. I haphazardly set all the fonts to size 24 or higher and the result wasn't exactly attractive, as expected.
Unit cycling which automatically swaps focus to the next available unit drives me pretty nuts in wartime, so I was happy to see Reddit user Miramosa's tweak.
The option to turn off unit cycling did make it into the options file, but apparently not into the actual menu. The file you're looking for is UserOptions.txt, which you should be able to find in Documents\My Games\Sid Meier's Civilization VI. Find the line that reads 'AutoUnitCycle 1', change the 1 to a 0, and save.
As Andy has written about in more detail, there is a way to enable team multiplayer in Civilization 6, even if Firaxis isn't ready to enable it officially. A 2K rep told us that this is "not a feature supported" by Civ 6, and recommends backing up any files you mod.
Team multiplayer is easy to flip on, though. Find the file StagingRoom.lua in your Civilization 6 install directory (it'll be in \Base\Assets\UI\FrontEnd\Multiplayer\) and open it in a text editor. Search for the line 'playerEntry.TeamPullDown:SetHide(true);' and change its value to false. Note that 'playerEntry.TeamPullDown:SetHide' appears other places in the file, but only one is set to true by default, so be sure to find that one. There's a note above it that reads 'IMPORTANT: DISABLING TEAM PULLDOWNS UNTIL DAY 0 PATCH' if you aren't sure. We're our own Day 0 patch!
Civilization 6 is out and it is exceptionally good. One thing it's missing, however, is an option for team multiplayer. But it looks like the feature is coming, based on the findings of this Reddit thread, and more interestingly for the daring (or reckless) among you, there is a way to enable it, to a limited extent, right now.
A number of references to team multiplayer have been found in the game's code, along with a comment in the XML stating, "Important: Disabling team pulldowns until day 0 patch." The general consensus is that the feature was planned and then kiboshed, probably due to some bug that reared its ugly head at the last minute. But you can re-enable it, as instructed in the Civ Fanatics forum, by editing line 1134 ("playerEntry.TeamPullDown:SetHide") in "C:\Program Files (x86)\Steam\steamapps\common\Sid Meier's Civilization VI\Base\Assets\UI\FrontEnd\Multiplayer\StagingRoom.lua" (or whatever path you use) from "true" to "false."
Even though you can turn it on, you may not want to rush to do so, since team multiplayer clearly hasn't been fully (or even mostly) implemented. According to follow-up comments, civilizations can't share research or technology, and while teammates can see one another's starting locations, areas of the map uncovered after the beginning of the game are not shared. Victory conditions aren't shared either, so it's impossible to achieve a team victory.
And of course there's always the risk of crashes that can so easily arise from this kind of horsing around. "At the moment Team Multiplayer is not a feature supported in Civilization 6," a 2K rep said. "If someone is going to mod any of the game files or XML files to change how features work, this is obviously at their own risk, so always backup the files they re planning to mod beforehand."
I think the "at their own risk" part bears repeating.
Civ 6, as we noted here, is "very moddable," but even so this sounds like one that you might want to stay away from, especially since official team multiplayer support (hopefully in the relatively near future) looks like a sure thing. I won't judge if you just can't wait, though and if you do give it a try, let us know how it goes in the comments.
Thanks, PCGamesN.

I come to you with knowledge that may help you in your quest to conquer worlds yet to be generated, and will also make the process much more appealing. All of the hours I’ve spent with Civilization 6 [official site] so far have taught me a thing or two, and I’ve filled the gaps in my learning by searching the internet for fixes and quality of life tweaks to address some of my complaints. Below, you’ll find help on managing districts, armies, amenities and the rest, as well as tips on some of the smaller things, like map rotation (yes, it’s possible!) and other camera controls.

If you played Civilization VI [official site] over the weekend, you likely noticed that, technically, the game basically runs fine. It’s fine. A few folks have reported minor bugs – which largely have workarounds – but no, it seems most people are playing Civ VI without problem. That’s fine for you, I’m sure, but what about me? What about the video game news writers? I’ve been checking every morning for patches, devastating bug reports, and apologies from publishers 2K, apologies that they’ve muffed it up like their recent BioShock Remastered and Mafia III launches but… no. Okay then. Great. Good. Lovely. And what do you propose I write this morning, you jackasses? … [visit site to read more]