Best thing(s) to do is (are):
1. Keep $60,000 on reserve after the aunt moves out
2. Never research Breast Enhancement serum trait (this triggers Sarah's quest)
Here's the code with notes in parathensis:
Code:
def strip_club_foreclosed_event_requirement():
if time_of_day >= 3:
return False (Must be before Evening)
if get_strip_club_foreclosed_stage() != 0:
return False (Don't foreclose the strip club if it's already foreclosed)
if mc.business.event_triggers_dict.get("strip_club_foreclosed_countdown", False):
return False (Don't foreclose the strip club if the countdown to foreclose started)
if sarah_epic_tits_progress() == 1: # don't start while Sarah epic tits event in progress
return False (Sarah must either have giant tits from the quest (2) or it not started (0))
if cousin.event_triggers_dict.get("blackmail_level", -1) == 1:
return False (You can test this, if you can blackmail Gabrielle and ask her to kiss you, then you have enough blackmail_level. if not, you need more)
if not cousin.has_job(stripper_job):
return False (Gabrielle must be stripping)
if mc.business.has_funds(60000): (Your business must have $60,000)
return cousin.event_triggers_dict.get("seen_cousin_stripping", False) (You must go to the club and see Gabrielle working)
return False
Once that function returns "True" (meaning none of the False conditions are met first) then you get this mandatory, automatic action:
Code:
def add_start_strip_club_foreclosed_countdown_action():
strip_club_closes_down_action = Action("Strip Club closes down", strip_club_foreclosed_countdown_requirement, "strip_club_closes_down_label", requirement_args = day + renpy.random.randint(10, 16))
mc.business.add_mandatory_crisis(strip_club_closes_down_action)
return
which is the 10-16 day countdown. I tested the function with the console by typing in "strip_club_foreclosed_event_requirement()" and once it returned True, I sped through about 14 days and I got the notification of the club closing. I also had never met Starbuck, so I didn't advance further than confirming it does close.