For those who got the following error when using the WT mod, there is an easy fix.
Error:
Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.
File "game/script.rpy", line 1011: scene statement expects a non-empty block.
scene aprologue with dissolve:
^
File "game/script.rpy", line 1100: scene statement expects a non-empty block.
scene a_Zoe_pro with dissolve:
Fix:
Open: On My Way Home\On_my_way_home-ch2.Final-pc\game\script.rpy
At line 1011 you have:
scene aprologue with dissolve:
change to
scene aprologue with dissolve <- remove the semicolon
At line 1100 you have:
scene a_Zoe_pro with dissolve:
change to
scene a_Zoe_pro with dissolve <- remove the semicolon.