Cyrillic font problem

Yeah, that was expected. Good that it really worked properly :slight_smile:

Cool. Thanks for your contribution. Will be integrated for sure!
At least for normal RPG Maker games this is not fixable because they are non-unicode Windows programs and are all depending on a codepage. There is no unicode version of the editor available, therefore there are no unicode rpg games in the wild.
This is fixable by using our own (still heavy under development) new editor and XML (all rpg files are converted from binary to xml). They will have complete unicode support (as you can see here: https://community.easyrpg.org/t/now-official-non-official-easyrpgs-editor/130/1#p968). Still highly experimental and not in the main codebase yet.

I havnt tested it but I guess you can just replace “kanji_encoding” with “UTF-32LE” and then specify the UTF-32 code under “STARTCHAR” for full unicode support (and add a if encoding == “UTF-32LE” around line 58 in the script because converting UTF-32LE to UTF-32LE will likely fail)