I found a problem why the game breaks on 34/71.
studio.rpy contains a condition:
if hour >= 14 and hour <= 17 and a12_66 == 1 and linsay_sandra_present == 0 and a12_25 == 1 and a12_26 == 0
if a12_26 == 0:
$ events += 1
$ a12_26 = 1
If you execute it before the event from bathroom.rpy:
if hour == 23 and release12 == 1 and a12_26 == 0 and a12_25 == 1
Progress stops, events don't occur.
When a12_26 = 1 the condition from bathroom.rpy is impossible to fulfill. Further progress doesn't move.
How to avoid this problem:
1. First, at 23 hours, go to the bathroom
2. Then from 14 to 17 go into the studio
How to fix it with the console:
1. Open console "Shift+o"
2. Write "a12_26 = 0" and push Enter
3. Go to the bathroom at 23 hour and catch Linsay by the mirror.
4. Open console "Shift+o", write "a12_26 = 1" and push Enter
Done