去除迷雾 但没有全亮 只对风云变幻规则有效 其他规则自行摸索吧
适合单人自嗨或者联机打电脑 省去各种烦人的弹窗烦恼 PVP就别开啦
方法:
在Steam\steamapps\common\Sid Meier's Civilization VI\DLC\Expansion2\Scripts\WorldCongress.lua文件的最后一行加上以下代码
function Initialize()
local aPlayers = PlayerManager.GetAliveMajors();
for _, pPlayer in ipairs(aPlayers) do
-- Reveal the map to all players.
local pCurPlayerVisibility = PlayersVisibility[pPlayer:GetID()];
if(pCurPlayerVisibility ~= nil) then
pCurPlayerVisibility:RevealAllPlots();
end
end
end
Initialize();


适合单人自嗨或者联机打电脑 省去各种烦人的弹窗烦恼 PVP就别开啦
方法:
在Steam\steamapps\common\Sid Meier's Civilization VI\DLC\Expansion2\Scripts\WorldCongress.lua文件的最后一行加上以下代码
function Initialize()
local aPlayers = PlayerManager.GetAliveMajors();
for _, pPlayer in ipairs(aPlayers) do
-- Reveal the map to all players.
local pCurPlayerVisibility = PlayersVisibility[pPlayer:GetID()];
if(pCurPlayerVisibility ~= nil) then
pCurPlayerVisibility:RevealAllPlots();
end
end
end
Initialize();

