- Sep 2, 2018
- 3
- 3
Apparently on the second office day, after finishing the coffee run second and copy machine first, the game checks if you've completed 2 (instead of 1 as the copy machine job) office jobs. After that, it starts a in between jobs scene with no lines that sends you back to the job select menu and, since you've done all the jobs, it starts the next scene, which is that in between jobs scene again and here is where the infinite loop appears.
To fix this, you need to unpack archive.rpa and find these lines in officejobs_coffeerun.rpy:
and change them so it checks only for 1 job:
To fix this, you need to unpack archive.rpa and find these lines in officejobs_coffeerun.rpy:
Python:
if main_story == 101:
if officejobs_complete == 1:
jump lbl_daily_grind_part1_jobs_midscene
else:
jump lbl_daily_grind_part1_jobs_end
elif main_story == 102:
if officejobs_complete == 2:
jump lbl_daily_grind_part2_jobs_midscene
else:
jump lbl_daily_grind_part2_jobs_end
elif main_story == 103:
if officejobs_complete == 2:
jump lbl_daily_grind_part3_jobs_menu
else:
jump lbl_daily_grind_part3_jobs_end
## NON-MAIN STORY
else:
jump lbl_officefloor_day_setup
Python:
if main_story == 101:
if officejobs_complete == 1:
jump lbl_daily_grind_part1_jobs_midscene
else:
jump lbl_daily_grind_part1_jobs_end
elif main_story == 102:
if officejobs_complete == 1:
jump lbl_daily_grind_part2_jobs_midscene
else:
jump lbl_daily_grind_part2_jobs_end
elif main_story == 103:
if officejobs_complete == 1:
jump lbl_daily_grind_part3_jobs_menu
else:
jump lbl_daily_grind_part3_jobs_end
## NON-MAIN STORY
else:
jump lbl_officefloor_day_setup