KingsRaiden

Engaged Member
Jan 4, 2017
3,298
2,339
You won't be losing the cheats. Wilson's mod will be split.
The "information and hints" part will be added directly to the game, so it won't be needed any more as a mod.
All stat cheats, inventory, etc., so all you know from Wilson's mod will not be a direct part of the game, but will continue in its current form as a mod.
That makes sense, thanks for the clarification.

I didn't get the idea that Wilson was going to continue with his mod from the notice, but good to know.
 

Puppet Master

Active Member
Aug 21, 2018
962
1,795
MonsieurX

I did finally get the scene.
My problem with the Natasha scene was a simple one: my character never goes to sleep at 2am.
So long as you sleep at 3am, there isn't a penalty. If you are up at 3:30, you might as well stay up until 6:30am because the penalty doesn't get any worse.
I thought you just had to be in your room at 1:30am, so I went there and waited. I often got Renee looking for her toothbrush, but if I didn't see Natasha, I just rolled back and went to the bar and got someone to play poker.
I put the right way to trigger the scene in my FAQ, including how to keep trying to get it to trigger.

Any word on how to get Joy to send her sexts?
I know I can just call them with a cheat code, but I want to get them in game and expose it if it's a bug.

I think it's possible that the new way to determine which sexts a girl sends may have screwed up Joy's sexts.
The new sexting system is really working great, though, so hopefully, it just needs a tweek.
 

InfamousAone

Member
Jan 22, 2018
124
180
I can no longer even start this game,every menu option leads to a crash,i'm on win 10 pro,4gb ram,Intel R Core i5-2520M CPU @2,50 GHz,anyone knows what might be the problem?
 
  • Like
Reactions: Puppet Master

N7's Slut

panty sniffer
Moderator
Donor
Sep 13, 2016
1,070
6,547
I can no longer even start this game,every menu option leads to a crash,i'm on win 10 pro,4gb ram,Intel R Core i5-2520M CPU @2,50 GHz,anyone knows what might be the problem?
what type of crashes do you get? do you get an error message or does the game just close it by itself
 
  • Like
Reactions: Puppet Master

Scorpio1111

Newbie
Jul 20, 2018
58
7
I am not positive of what to search sorry if someone has answered this already, but can someone tell me how to change the background pics in the upgraded bedroom.
 
Last edited:

Monsieur X

Engaged Member
May 26, 2018
2,523
3,355
Girls achievement pictures, there are the options to set wallpapers and save pictures settings => accessible via the the remote icon app on your phone.
 
  • Like
Reactions: Puppet Master

Bantry

Forum Fanatic
Oct 24, 2017
5,344
13,241
I am not positive of what to search sorry if someone has answered this already, but can someone tell me how to change the background pics in the upgraded bedroom.
Girls achievement pictures, there are the options to set wallpapers and save pictures settings => accessible via the the remote icon app on your phone.
Providing of course that you 'unlock' them first with your Favor Points.
 

Puppet Master

Active Member
Aug 21, 2018
962
1,795
Actually Yvette not coming to your room about a nightmare might be normal or a new feature, or it might be part of the cooldown period, or it might be that you are missing a hidden condition we don't know of.
Each new version brings new delights that we may be ignorant of.
Don't worry, there's still plenty of ways to have sex with Yvette.
Keep playing and keep an eye on her stats.
 
Last edited:

Monsieur X

Engaged Member
May 26, 2018
2,523
3,355
No, I am not 100% certain. However, once I achieved both endings it stopped occurring. At least not regularly, not even once a month.
I tried to trigger Yvette night visite again, tried for 2 weeks, no luck.
I am sure that I got the scene again after completing both achievements but it was before 0.1.9.0.
 
Last edited:

darkhound1

Well-Known Member
Game Developer
Aug 8, 2017
1,834
8,594
I tried to trigger Yvette night visite again, tried for 2 weeks, no luck.
I am sure that I got the scene again after completing both achievements but it was before 0.1.9.0.
The cooldown period is 5 days. The code hasn't been changed in 0.1.9, but the more often she visited, the less likely it becomes.
Here is the code to check if the event triggers or not:
Python:
#   --- check event: bad dream ---
    $ l_event_seen_times = int(yvette.get_event_seen_times("Bad_dream")) * 2
    if l_event_seen_times == 0:
        $ l_event_seen_times = 2
    if yvette in list_of_characters and yvette.rsm[0].affection >= 80 and yvette.rsm[0].love >= 40 and renpy.random.randint(1,l_event_seen_times) == 1 and actions_left >= 12:
        if yvette.get_action_allowed("event_bad_dream") == True:
Okay, so what does it mean:
The event check is done when you click the "sleep button".
  • yvette in list_of_characters --> she has to be on the island
  • affection >= 80
  • love >= 40
  • actions_left >= 12 --> it has to be 01:00 or earlier when you go to sleep
  • renpy.random.randint(1,l_event_seen_times) == 1 --> okay that's the tricky part. If you have seen the event 0,1 or 2 times, your chance is 50%. After that it goes down with each visit. with 10 visits it's only 10% now.
If you want to "save scum" to get it, try the following:
Make sure all the other requirements are met. Save before you click the sleep button.
Sleep, if event doesn't trigger, reload, try again.

Since it becomes more or less impossible to trigger the event after you have seen it more than 10 times,
I have changed the code:
Python:
    if l_event_seen_times == 0:
        $ l_event_seen_times = 2
    elif l_event_seen_times > 6:
        $ l_event_seen_times = 6
What it means is that the lowest percentage you can get is 16% after the change. So if you save/load 6 times, on average it should trigger once. Or in other words, if you sleep befoer 01:00, you sheould get it once a week if the otehr requirements are met.
 

Monsieur X

Engaged Member
May 26, 2018
2,523
3,355
Mystery is solved ! Thanks.
I got rid of Natasha (to have only one girl that can visit at night), saved at 00h00 and lo and behold, after a few loadings Yvette came :)
I had no clue that there was "diminishing return" on Yvette nightmare scene.
 
Last edited:
4.00 star(s) 231 Votes