bridgebuilder
Newbie
- Apr 10, 2020
- 34
- 7
Is there a command to get the Strip Club quest to start? I have well beyond $60K and Cara's stats maxed out. Unrelated, but Ellie isn't showing up either.
Really? I actually did the Sarah bigger boobs quest and got the strip club foreclosed successfully and bought it. No idea why it worked for me. I did it ages ago with Sarah's quest so maybe that's the key.One thing to be aware off is that if the Sarah gets bigger boobs quest has started the sex club can not foreclose if remember right before you had that date where she takes you there. Erica, try to talk about her financial situation and have photo's with her and sis and yoga lines at company started before you race her.
Some people from the discord like Elkrose do and they do share it with the devs if they think a bug or important suggestion....and that's why somebody from the dev team (or with enough knowledge of the game code) should release some sort of guide where the main quests/ events triggers and conditions were detailed; for us always-thankful-players sake.
Dunno if they keep visiting this forum, though.
Yeah, one point per day.Do girls novelty go back up on their own?
That slow?! No wonder I use cheat to bump them back up.Yeah, one point per day.
Keep in mind, the design philosophy of it is pretty harem-based. If your character is fucking like 10 or 20 different gals, then not fucking one of them for five days isn't really that slow. If you're trying to do monogamy in this game, you will be essentially paddling upstream against the tide of what kind of play style it was built for.That slow?! No wonder I use cheat to bump them back up.
One thing to be aware off is that if the Sarah gets bigger boobs quest has started the sex club can not foreclose if remember right before you had that date where she takes you there. Erica, try to talk about her financial situation and have photo's with her and sis and yoga lines at company started before you race her.
So basically if you want the strip club to close down, you have to have either not started Sarah's boob expanding quest or completed it?Really? I actually did the Sarah bigger boobs quest and got the strip club foreclosed successfully and bought it. No idea why it worked for me. I did it ages ago with Sarah's quest so maybe that's the key.
Edit: I figured out what you mean, the code has some shitty requirement that she must not be on her quest for bigger boobs. E.g. way before the strip club starts, make sure to get her "epic breasts".
I think I gave Sarah a serum for bigger boobs. The date also happened at the strip club, but I think I discovered it by wandering. So now does this mean I need a new playthrough? Or can I manually insert a new value to the event triggers or something?Really? I actually did the Sarah bigger boobs quest and got the strip club foreclosed successfully and bought it. No idea why it worked for me. I did it ages ago with Sarah's quest so maybe that's the key.
Edit: I figured out what you mean, the code has some shitty requirement that she must not be on her quest for bigger boobs. E.g. way before the strip club starts, make sure to get her "epic breasts".
It is not about the boob quest per se, it is about having had the date with Sarah on Saturday where she take you to the strip club. That date option is triggered though by start of Sarah getting bigger boob quest and hard stops strip club from foreclosing before date completed if it is active. This also leads to the option of having Sarah come over to company on a Saturday and offer option with threesome Sarah next Saturday, that threesome with whoever you choose will unlock Naomi as an interactable NPC a few weeks later. (When Naomi comes to apologize take the more corrupt options.)I don't think that was it. In my playthrough with the last stable release I completed the Sarah boob quest well before finishing the sex shop investments, and a month plus of game time later the strip club was still stubbornly not closing.
Corrupt citizens. Either do it directly or use some of the dispersal methods (known being the energy drink sell). It is a grind that takes time and effort.How does city corruption work? how can i increase it and what does it do?
Is it based on the serums you sell? does their price or stats (men, phy, sex, med) matter?
Or is it some average of the sluttiness/love/obedience of all the girls in the city?
Thanks
I think you're fine? Honestly I forget the code I looked at, it just said sarah_epic_tits_progress() == 1 or something along those lines? I think as long you're not at a that specific stage. So either way before date OR in your case you've completed it and the proc has started for the strip club. Also if you do get locked out I could honestly probably look up the code again if I remembered what file it was in and find the command to manually call strip club..I think I gave Sarah a serum for bigger boobs. The date also happened at the strip club, but I think I discovered it by wandering. So now does this mean I need a new playthrough? Or can I manually insert a new value to the event triggers or something?
init 2 python:
def init_strip_club_mod(action_mod):
return
def get_strip_club_foreclosed_last_action_day():
return mc.business.event_triggers_dict.get("foreclosed_last_action_day", 0)
def strip_club_foreclosed_event_requirement():
if time_of_day >= 3:
return False
if get_strip_club_foreclosed_stage() != 0:
return False
if mc.business.event_triggers_dict.get("strip_club_foreclosed_countdown", False):
return False
if sarah_epic_tits_progress() == 1:
return False
if cousin.event_triggers_dict.get("blackmail_level", -1) == 1:
return False
if not cousin.has_job(stripper_job):
return False
if mc.business.has_funds(60000):
return cousin.event_triggers_dict.get("seen_cousin_stripping", False)
return False
def cousin_talk_about_strip_club_requirement(person):
return not person.is_home
def starbuck_talk_about_strip_club_requirement(person):
if get_strip_club_foreclosed_stage() == 1:
if day > get_strip_club_foreclosed_last_action_day() + 2:
if starbuck in sex_store.people:
return True
return False
def strip_club_foreclosed_countdown_requirement(start_day):
if time_of_day >= 3:
return False
if sarah_epic_tits_progress() == 1:
return False
if cousin.event_triggers_dict.get("blackmail_level", -1) == 1:
return False
if day > start_day:
return True
return False
def strip_club_foreclosed_change_stripper_schedules():
for person in [x for x in mc.business.stripclub_strippers]:
person.set_override_schedule(person.home, day_slots = [0, 1, 2, 3, 4, 5, 6], time_slots = [3, 4])
return
def add_cousin_talk_about_strip_club_action():
cousin_talk_about_strip_club_action = Action("Cousin talk about strip club", cousin_talk_about_strip_club_requirement, "cousin_talk_about_strip_club_label")
cousin.add_unique_on_room_enter_event(cousin_talk_about_strip_club_action)
return
def add_starbuck_talk_about_strip_club_action():
starbuck_talk_about_strip_club_action = Action("Starbuck talk about strip club", starbuck_talk_about_strip_club_requirement, "starbuck_talk_about_strip_club_label")
starbuck.add_unique_on_room_enter_event(starbuck_talk_about_strip_club_action)
return
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
strip_club_foreclosed_mod_action = ActionMod("Strip Club Story Line", strip_club_foreclosed_event_requirement, "club_foreclosed_event_label",
menu_tooltip = "At a certain point the strip club is closed and you get the chance to buy it.", category = "Misc",
initialization = init_strip_club_mod, is_mandatory_crisis = True)
Try going to university and talking to her, you can hire her there usually.how to hire sis? At some point the choice usually arise, but this run i don't get that option.
For real, at the university i have the option. Thx.Try going to university and talking to her, you can hire her there usually.
Unlocking personal serums is tied to certain research techs. Once unlocked, it will tell you which one you need to level mastery for to increase the tier.Unlocking all the personal serums? I've got the first two columns for a total of six choices, but the second two are blank with ??? on top. how do I unlock them? (and what are they?)
Try the mall Atrium in the afternoon, you will eventually get the business meeting option in the middle column. It's a lunch meeting.So I got event with one random employee, something about her dad being a chemist and meeting him. I ignored it for a week or two and now I can't find any info how to meet him.