So the conditions sufficient to reproduce the Critical Game state.
- Friday
- 1v1
- 4 AM in Australia vs 12:00 PM in California
- NAT vs no-NAT
- Russian Version vs English Version
- Modified Version of Cataract
- Light player captures all of the flags and then a flag returns to neutral (Dark player captures one)
- WindowsXP vs Windows 7
- Irek vs Ptarth
I'm looking at the logs to try to make sense of what is going on. The best clue I currently have is that after the Forces of Light have complete flag control and they lose one of their flags, a localization error occurs. A critical game state then occurs 1-6 seconds after this event. This was replicated 5 times, so I'm pretty sure it is real.
Edit: I think I got it.
The string definitions used in Demigod are case sensitive. This can lead to problems, one of which is when two strings exist that only differ by in case only. In the following I show examples of this, as well as what is most likely causing the problem. The following are excerpts from strings_da.lua from the English, French, and Russian string_db.lua files.
English
- FLAG_0000="Cooldown times reduced by [GetCooldownBonus]% for the controlling team. Grants controlling team members access to the Celerity Battle Standard."
- FLAG_0001="Cooldowns decreased."
French
- FLAG_0000="Temps de refroidissement réduits de [GetCooldownBonus]% pour l'équipe qui le contrôle. Fait profiter les membres de cette équipe de l'Etendard de Refroidissement."
- FLAG_0001="Refroidissement accéléré."
Russian
- FLAG_0000="У команды, овладевшей флагом, перезарÑ??дка на [GetCooldownBonus]% быÑ??трее. Ð’Ñ??е члены команды получаÑ??Ñ‚ доÑ??туп к боевому флагу перезарÑ??дки."
- FLAG_0001="ПерезарÑ??дка проходит быÑ??трее."
So, the first two entries, FLAG_0000 and FLAG_0001 are the tooltips for the Celerity Flag (I'm not sure they are used in game). Comparing across languages it is apparent that they are similar. Also, notice that all contain [GetCooldownBonus]. This is the syntax that is interpreting to allow the strings to referenced defined values in the blueprints. In this case, GetCooldownBonus is defined in the blueprint of whatever calls FLAG_0000.
Now, let's look at another set of strings.
English
- flag_0000="The Forces of Light control the map!"
- flag_0001="The Forces of Darkness control the map!"
French
- flag_0000="Les Forces de la Lumière contrôlent la carte !"
- flag_0001="Les Forces des Ténèbres contrôlent la carte !"
Russian
- flag_0000="У команды, овладевшей флагом, перезарÑ??дка на [GetCooldownBonus]% быÑ??трее. Ð’Ñ??е члены команды получаÑ??Ñ‚ доÑ??туп к боевому флагу перезарÑ??дки."
- flag_0001="ПерезарÑ??дка проходит быÑ??трее."
Notice that the French and English strings match. Now, check out the Russian version (at least I assume it is Russian). Notice that flag_0000 contains [GetCooldownBonus] only in the Russian version. Also notice that FLAG_0000 and flag_0000 for the Russian versions are identical. I believe that happened is that flag_0000 was replaced by FLAG_0000 somehow. When flag_0000 is called it then wants to call have [GetCooldownBonus] defined. However, since GetCooldownBonus is not defined, it errors out and causes a desync.
The solution is to fix the strings_db.lua for the Russian version by removing the [GetCooldownBonus] from flag_0000. Ideally you'd want to replace the faulty string with the correct one, but either way the problem would be resolved.
Now, this is complete conjecture without testing it, I'd need to get another gullible person with a Russian install to test it. I can't confirm it only with English installs. However, I'm pretty sure this is it.
I'd like to thank Irek for facilitating the documentation of the Forces of Light bug. His continued belief and active posting in the forums was one of the leading causes to why I believed the bug did exist. This was in spite of the stance by active forumers and Stardock. It was only with his help and testing efforts that the bug was able to be tracked down and solved. I really appreciate his assistance in this matter. His help in this matter is doubly appreciated because he stayed up all night and was still willing to put up with my efforts and attempts to solve this issue.