How to Play 100% Solo (No AI Players)

Sid Meier's Civilization VI327 views2 favorites2 min readby ualinUpdated 17 JunView on Steam ↗

Introduction

If you play CIV, you're probably already sick of always having to deal with the annoying CIV's that pop up all the time to annoy you, and if you're not the competitive type, here's a guide for you to play alone, just with City-States and Barbarian Tribes (to have some challenge).

Step 1

The first thing you should do is access the game directory. On Steam, go to your game list, right-click on CIV VI, and go to:

Properties > Installed Files > Browse

I recommend using a code editor like Visual Studio Code to access these directories, but you can use Notepad if you don't have one.

Next, go to:

Base > Assets > UI > FrontEnd

Open the "AdvancedSetup.lua" file, press CTRL + F, and search for:
local minPlayers = MapConfiguration.GetMinMajorPlayers() or 2;

Then change it to:
local minPlayers = 1;

This setting alone will allow you to limit the number of players from 2 to 1 in the Advanced Settings in-game, however, this will cause bugs in Barbarians and City-States, which will prevent them from spawning.

If you don't want them to appear, this is enough, but if you want to remove only the other CIV's, you'll need to make a few more adjustments.

Step 2

After saving the file, go to:

Assets > Gameplay

Open the "GlobalParameters.xml" file and change the lines:
<Row Name="BARBARIAN_CAMP_MAX_PER_MAJOR_CIV" Value="3"/> <Row Name="BARBARIAN_CAMP_FIRST_TURN_PERCENT_OF_TARGET_TO_ADD" Value="25"/> <Row Name="BARBARIAN_CAMP_ODDS_OF_NEW_CAMP_SPAWNING" Value="2"/>
To:
<Row Name="BARBARIAN_CAMP_MAX_PER_MAJOR_CIV" Value="8"/> <Row Name="BARBARIAN_CAMP_FIRST_TURN_PERCENT_OF_TARGET_TO_ADD" Value="100"/> <Row Name="BARBARIAN_CAMP_ODDS_OF_NEW_CAMP_SPAWNING" Value="20"/>

TIP: Only the line BARBARIAN_CAMP_FIRST_TURN_PERCENT_OF_TARGET_TO_ADD needs to be 100, to ensure that barbarians spawn even without other civilizations besides yours, the other two lines you can adjust to your personal taste.

Step 3

Finally, go to:

Assets > Configuration

Open the "BalanceMaps.xml" file and under MapSizes, look for MinPlayers="2", change all "2" to "1". Now, regardless of the map size you choose, there will be no conflict, as they all accept at least one player.

Explanation

What we did in Step 1 was force the game to accept at least one player, but the maps don't support this, and Step 3 was created to fix this.

In Step 2, we forced the barbarians to spawn, as this would only occur if there were at least two players.

Since they are 100% guaranteed to spawn at the beginning, they will continue to spawn according to the odds you set in the "BARBARIAN_CAMP_ODDS_OF_NEW_CAMP_SPAWNING" parameter.

Extras

In the first turn you will get the victory, after all, there is only you in the game, so click on "Just one more turn" to continue playing.




My game is a little different from the original, because I'm using some mods, in case you're interested, this is the list https://steamcommunity.com/sharedfiles/filedetails/?id=3582067737
🏆

Beat Sid Meier's Civilization VI's 100% run?

Flex it — let your friends know you pulled it off.

This guide was created by its original author on the Steam Community. Are you the author and want it removed? Request removal.