You can ask you girlfriends to join your harem and build a dungeon currently in game.will there be a marriage system with polygamy and will there be a slave route
You can ask you girlfriends to join your harem and build a dungeon currently in game.will there be a marriage system with polygamy and will there be a slave route
Me too :-(I don't seem to be able to progress Erica's Story, it's stuck on Try Getting to Know her Better
Done so, seems to work, just Iris stays where she used to stay (altough when console asked the home would be the mansion, they just never show up there and sleep at their old place). Seems i miss the command to make them live/sleep at their new homethe_person._home = # <-- basically match the number to the one you want to transfer to.
ie... to force Iris Vandenberg to Christina's, just figure out Christina's _home #, and use that.
I used to do this, too. Now, I just scroll for the attractive toons and cheat-menu in the desired stats/skills. I still go for realistic skills for the recruitment tier I have unlocked (early game ~3-4, mid-game 5, late game 7) and don't worry so much about stats since I hit everyone with a "Lucky 7s" pot when unlocked (All stats =7).Guilty as charged
I was able to trigger it on a test game. You have to be blackmailling Gabrielle and know she's a stripper, have a business balance of $60,000, and not currently have any of Sarah's breast quests active (meaning you either did not start or have already finished).Yes, never once triggered for me and I am talking over two hundred saves and is supposed to according to what is needed in the code
Really valuable info off the top of my head not sure about Sara quests stages Thanks Ill give it another goI was able to trigger it on a test game. You have to be blackmailling Gabrielle and know she's a stripper, have a business balance of $60,000, and not currently have any of Sarah's breast quests active (meaning you either did not start or have already finished).
Once those conditions are met, there's a timer that starts that ends between 10 and 16 days, then you get a notification that morning that starts the strip club storyline.
Never seen it in a normal game.
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
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
In my case:I used to do this, too. Now, I just scroll for the attractive toons and cheat-menu in the desired stats/skills. I still go for realistic skills for the recruitment tier I have unlocked (early game ~3-4, mid-game 5, late game 7) and don't worry so much about stats since I hit everyone with a "Lucky 7s" pot when unlocked (All stats =7).
I am slightly confused with these requirements. I manually added 'strip_club_foreclosed_countdown' and 'seen_cousin_stripping' as a boolean True. I meet the other conditions (sarah progress is 3, have funds, and can kiss cousing, get_strip_club_foreclosed_stage() returns 0), yet "strip_club_foreclosed_event_requirement()" always returns false (I checked during morning). Obviously I made some mistake but anyone have any idea?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:
Once that function returns "True" (meaning none of the False conditions are met first) then you get this mandatory, automatic action: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
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.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
Did you have $60,000? Seems to be the only thing missing.I am slightly confused with these requirements. I manually added 'strip_club_foreclosed_countdown' and 'seen_cousin_stripping' as a boolean True. I meet the other conditions (sarah progress is 3, have funds, and can kiss cousing, get_strip_club_foreclosed_stage() returns 0), yet "strip_club_foreclosed_event_requirement()" always returns false (I checked during morning). Obviously I made some mistake but anyone have any idea?
Absolutely, I have around $380k. From the console I manually checked each condition. It seems to be returning True, but my doubt is regarding the two values being fetched from the event.triggers dictionary. I assume they need to be Boolean TRUE?Did you have $60,000? Seems to be the only thing missing.
I am able to make her kiss, ask her to work etc. I also ran the condition from console and it returned trueThe blackmail level thing might be it? How much "dirt" do you have on your cousin?