Sid Meier's Civilization VI

Sid Meier's Civilization VI

Zugaikotsu's Fast Forward AI Turns -- Options Extension
此主題已被鎖定
Fabulist 2022 年 1 月 21 日 下午 2:15
Switching speed bug fix
It looks like I fixed bug from the comments by forsing game to slow mode at the beginning of every player turn. For the time being it works fine on my game.

To do this you need to find file "Zug_FastForwardAI_GP.lua" (in the same folder as the settings file), then inside file replace this text:


function SetQuickAction (playerID, blsFirstTime)
if (Players[playerID] ~= nil and Players[playerID]:IsHuman () == false and blsFirstTime == true) then
ExposedMembers.Zug_FastForwardAI.SetStoredQuick (true, true);
end

end

with this:


function SetQuickAction (playerID, blsFirstTime)
if (Players[playerID] ~= nil and Players[playerID]:IsHuman () == false and blsFirstTime == true) then
ExposedMembers.Zug_FastForwardAI.SetStoredQuick (true, true);
end
if (Players[playerID] ~= nil and Players[playerID]:IsHuman () == true and blsFirstTime == true) then
ExposedMembers.Zug_FastForwardAI.SetStoredQuick (false, false);
end
end

I hope this will be useful for author and players))
< >
目前顯示第 1-3 則留言,共 3
I will try it and come back after a few months of using it to verify if it helps or causes problems. Thank you very much!
Zugaikotsu  [開發人員] 2022 年 4 月 19 日 下午 8:31 
I missed this post earlier, apologies for the late response.
Thanks for the feedback. I will play with it within the next few weeks and if no regression, will push it back to the main code base. If anyone else has tried, please let me know your results.
Zugaikotsu  [開發人員] 2022 年 5 月 24 日 下午 8:57 
The change was pushed into the core code. Locking topic.
< >
目前顯示第 1-3 則留言,共 3
每頁顯示: 1530 50