DeepSleep
Hey mate, there is indeed a problem with the original game version. I started a fresh game and deleted my old saves and persistent files to ensure to play a fresh game.
The problem is that on Day 4 you can't progress to do the pornshoot at Dilian's, if you are on Earl's path (possible that it is the same for Taxman, too).
Edit: Same issue on Taxmann path. Only Carl path + pornshoot works.
Reason: Missing variables for Day 4 Office and Gym event.
Code from CarlEventOne:
Code:
if GoodBadDoctorChoice == 2:
$ HospitalDayFourSchmidt = True
if GoodBadDoctorChoice == 1:
$ HospitalEventThree = True
$ RebeccaGymQuest = True
$ OfficeGenericQuest = True
$ newQuest = True
$ calendar.AddTime(1)
$ DayFourVariable = True
jump mapshow
Edit: Here you can see that Gym quest is required for the pornshoot.
Code:
label DilanLogicGate:
show screen DowntownScreen
hide screen disableClick
if calendar.TimeOfDay == 1:
if RebeccaGymQuestDone == True:
if DilanPornShootQuestDone == False:
hide screen DowntownScreen
jump DilanEventTwo
Right now the pornshoot is enabled after Day 4 office quest and Gym quest.
Nitpicking:
The scene order with Becca looks a bit weird. You meet her at the gym and then the next event is the pornshoot where she is too.
Suggestion:
Either the pornshoot needs to be moved to see both scenes or Gym quest, on the pornshoot path, needs to be removed.