Korlaeda Thanks for the infos. I'm a bit stumped whats happening in your case. Maybe its related to the following stuff.
Please take a look at the first cited post and point 1 and test this.
VepsrP Did you by chance miss this posts from me on march 7:
This is
still unfixed in UnRen v8.7 and i don't think this code parts and facts are unimportant.
Additional stuff:
- Renpy docs for v3.9 state the -O switch isn't needed, so this code for it in Unren is a waste of time. Cite:
When running under Ren'Py 8, Ren'Py now runs without the equivalent of the Python -O flag. This means that docstrings and assert statements are available.
- There is
no 32 bit support in RenPy v8 anymore, so the code to set Unren for any 32 bit libs would produce a bug with v8. There will logically never exits a dir named "py3-windows-i686"... excerpt from the file:
Code:
if exist "lib\py3-windows-x86_64\python.exe" (
if not "%PROCESSOR_ARCHITECTURE%"=="x86" (
set "pythondir=%cd%\lib\py3-windows-x86_64\"
) else if exist "lib\py3-windows-i686\python.exe" (
set "pythondir=%cd%\lib\py3-windows-i686\"
)
) else if exist "lib\py3-windows-i686\python.exe" (
set "pythondir=%cd%\lib\py3-windows-i686\"
)
Insead of the current code, this section should in case of 32 bit OS show a warning that the users OS isnt supported and exit.