InfamousAone

Member
Jan 22, 2018
126
182
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,073
6,761
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
61
11
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,530
3,370
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,420
13,508
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
968
1,817
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,530
3,370
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,842
8,642
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,530
3,370
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) 237 Votes