Sid Meier's Civilization VI

Sid Meier's Civilization VI

Zugaikotsu's Fast Forward AI Turns -- Options Extension
Este tema ha sido cerrado
Fabulist 21 ENE 2022 a las 14: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))
< >
Mostrando 1-3 de 3 comentarios
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  [desarrollador] 19 ABR 2022 a las 20: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  [desarrollador] 24 MAY 2022 a las 20:57 
The change was pushed into the core code. Locking topic.
< >
Mostrando 1-3 de 3 comentarios
Por página: 1530 50