Cobl v1.74の Wizard.txt
はパス区切りが二重化されていない箇所があり、MODの存在チェックが正しく動作しません。修正が必要です。
When specifying a path below the Data directory, use double slashes to indicate folder separation. For example assuming MenuQue.dll is installed correctly,
"obse\\plugins\\MenuQue.dll"
will work but"obse\plugins\MenuQue.dll"
will fail.
修正前
If !DataFileExists("Sound\Fx\Ambient\amb_sigilstone_take_frostcrag.wav")
修正後
If !DataFileExists("Sound\\Fx\\Ambient\\amb_sigilstone_take_frostcrag.wav")