- Jan 9, 2018
- 703
- 1,820
@Nefastus
Here's what I collected and locally fixed on my good guy playthrough so far.
version03.rpy
version04.rpy
Here's what I collected and locally fixed on my good guy playthrough so far.
version03.rpy
- Capitalization error on line 13:
$drivewaybj3v = false --> $drivewaybj3v = False
version04.rpy
- If you went home in 03 instead of partying with the secretary $fuckedsec3v does not get set, insert after line 9:
default fuckedsec3v = False - Assignment instead of comparison on line 763:
if d1Knock1 = False: --> if d1Knock1 == False:
even easier: if not d1Knock1: