Can anyone get these traceback reports to the dev please.
And for those who can't get Lucy up just go to the living room at night when she is there and you will rank up to lvl 4.
View attachment 1239358
So I ran into an issue like that when I decided to test some older content I had already done with my mod... The interesting thing I found was that in an older version of the game, the line that bugged was attributed to the wrong character, so Caizer fixed it, but when I went over that content in the new version the attribution change caused an issue. So you would fix it by decompiling the RPYCs, and then changing the attribution of the line in the Event7.rpy to another character. For example, Let's say the line read:
call adv_say (mc, txt0003053).
You would change that to:
call adv_say (lucy, txt0003053).
After that, you can pass the line in game, and then change it back to:
call adv_say (mc, txt0003053)
If you decide to go over that line again in the future it should no longer cause any issues, AFAIK. I don't know what in particular about the text call script causes that issue, but I hate when devs use complicated text call scripts to begin with, it's totally pointless in Ren'Py, and it also messes with skipping, which I guess you can't do by default but you can do with my mod...