makeitso

Well-Known Member
Jul 29, 2018
1,024
688
I've noticed the park mod is a bit of a cheat code. The logic there doesn't seem to line up with the girl's boundaries. I seem to be able to go a lot further than I should be able to.
Had the same experience, felt messy (and not the fun kind of messy). The game treats the park like it's the beach, so that may be why - total mixup.
 

wktos

Newbie
Feb 3, 2019
19
19
I know it's not the first (nor the second) time I ask this here, but why is the event where an employee ask you to hire one of her relatives so hard to trigger?

I was told to try playing with these ones to force the event, with no luck.
You don't have permission to view the spoiler content. Log in or register now.

Once the "Recruitment signage" policy is up, and with enough spare job vacancies, the game should rise the priority of this event, IMO.

TIA.

There are additional requirements to this happen:
1. Mother need to be enough old (IIRC 34+)
2. Mother has to have child

Hire daughter:
Python:
    def daughter_work_crisis_requirement():
        return (mc.is_at_office
            and not mc.business.at_employee_limit
            and get_HR_director_tag("business_HR_relative_recruitment", 0) == 2
            and get_random_mother_from_company_with_children())
Python:
    def get_random_mother_from_company_with_children():
        return get_random_from_list([x for x in mc.business.employees_at_office
            if x.age >= 34
                and not x.is_unique
                and not x.is_clone
                and x.kids - x.number_of_children_with_mc > 0
                and x.kids - x.number_of_children_with_mc > town_relationships.get_existing_child_count(x)])
Hire mother:
Python:
    def hire_mother_work_crisis_requirement():       
        return (mc.is_at_office
            and not mc.business.at_employee_limit
            and get_HR_director_tag("business_HR_relative_recruitment", 0) == 2
            and hire_mother_work_crisis_get_daughter())
 

Edwarf

Member
Jun 8, 2017
421
480
My randomly hired employees are over 40 year old with 3 children each (took me a long while), so I have no idea why they never ask me to hire her daughters, when I asume all the requirements are met.

Is there a console command to trigger the event?

Many thanks in advance.
 

themagiman

Well-Known Member
Mar 3, 2018
1,766
555
How do you get employees to stop sitting down at work?

Can you change the outfits or the waitresses at the bar? I can do it for the cafe but not the bar for some reason.

What's the easiest way to unlock the strip club? I never seem to be able to get it anymore. Using the mod pack that is uploaded here.
 

Wolfdragon20

Member
Nov 8, 2021
354
188
so how do i trigger the option to hire the player's mom? i've bought the personal secretary option but i still can't hire her
 

wktos

Newbie
Feb 3, 2019
19
19
My randomly hired employees are over 40 year old with 3 children each (took me a long while), so I have no idea why they never ask me to hire her daughters, when I asume all the requirements are met.

Is there a console command to trigger the event?

Many thanks in advance.
please be aware, that you need to have correct value of "business_HR_relative_recruitment" - basically it means that you enabled hiring relatives via HR director

yes, there is a way to trigger via console:
first you need to know which event it is, to find it type:
Code:
crisis_list[13][0].name
It wil display event name

and check other values (here is "13") to find correct value
once you know right index just do that:

Code:
crisis_list[13][0].call_action()
above command will trigger event 13. If requirements are not met nothing will happen. In my play "13" used to be "hire_daughter_crisis"
 
  • Heart
  • Like
Reactions: Edwarf and oldshoe

TS2016

Member
May 7, 2017
478
258
How do you get employees to stop sitting down at work?
What do you mean? Are you talking about at your pharmacy business? If so why do you want them to stop sitting down? Most of them have desk so they would be sitting at their desk.
 

themagiman

Well-Known Member
Mar 3, 2018
1,766
555
What do you mean? Are you talking about at your pharmacy business? If so why do you want them to stop sitting down? Most of them have desk so they would be sitting at their desk.
Yeah I don't want them sitting down at their desk. One of the mods added it a while back and I hate it I want them standing instead.
 

Edwarf

Member
Jun 8, 2017
421
480
wktos
By entering crisis_list[13][0].name in console, returns an 'Action' object is not subscriptable error, but thanks anyway. ;)
 

rb813

Well-Known Member
Aug 28, 2018
1,533
1,018
taboo break console command? i know how to do it normally, but it's LONG, i want it FAST
I don't know of a console command for that, but you can probably break most taboos real quick by increasing their sluttiness all the way up (and then put it back down after the taboo is broken, if you want).
 

Mishun

Active Member
Jan 27, 2018
663
222
I don't know of a console command for that, but you can probably break most taboos real quick by increasing their sluttiness all the way up (and then put it back down after the taboo is broken, if you want).
found it in tread for old (abandoned) game if anyone interested
the_person.event_triggers_dict["kissing_revisit_count"] = 100
the_person.event_triggers_dict["oral_revisit_count"] = 100
the_person.event_triggers_dict["anal_revisit_count"] = 100
the_person.event_triggers_dict["vaginal_revisit_count"] = 100
 

TheHalfWit

Newbie
Oct 8, 2022
48
44
this action remove it temporally, i want to remove it permanently, just like in vanilla game
There's a quest chain through your personal production assistant, normally Ashley where you can get personal serums. The 2nd level of the energy serum lets you go like an energizer bunny.
 
4.60 star(s) 76 Votes