Hello!
I downloaded the mod a few hours ago. I get many error messages when starting a new game in French. Everything is fine in English. It seems to be related to accented characters.
Thanks for any help.
I don't know will this be useful to anyone, but someone had a similar issue with accented characters and this was a "solution" we used.
I don't remember the exact setup that player had, but I think that in that case it was a Chinese version of Windows that had trouble with accented characters.
We simply used regex with find and replace function in Notepad++ to remove all accented (and some other) characters from mod's text files. The regexes used were:
Code:
&#...;
&#x...;
[À-ÿ]
ß
This is not a perfect solution because when using a language where those characters appear you would notice them missing in words and you would need to redo this every time you update mod's text files (and there might be other unforeseen consequences), but it made the game work.