- Jul 17, 2019
- 5,777
- 14,252
The same thing is happening to me. I don't if its a bug or missing trigger so I'll hold off on playing until the final final version come out. Unless there is a console command that can bypass this.i've been doing that for a while now... and nothing ever happens. same goes to the sunbathing with melinda, it happend once and that's about it. the option never showed up again... but i still can get the stronger pill though.
V11 final newsShare the V11 Final news? Somebody
Here are detailed answers to your questions!Where is it?
Sounds like a bug with the game to me then as that encounter essentially locks the rest of the sunbathing line out, the linda scene is about the time it broke too, I've seen posts of people bring up before the linda scene broke their game when searching the thread for solutions but so far your post is the closest to figuring out what the issue to this problem isI was digging about this problem because that happens to me too. It turns out, after Cynthia gets home you have one more chance to get the sunbathing option. That will lead you to the event with Linda, after that there is a variable (dancheck) that has to be 0 so that event happens. After the event happens the variable change to 1, so the condition to the sunbathing cannot be met, therefore it doesn't show up. I have been tinkering around to see if there is a way to solve it or making it appear like is supposed too. If you make the variable 0 again you will get sunbathing back but you just going to repeat the event and the variable will go back to 1. I was hopping that someone would help out in this problem.
will be changes? or it will be bug fix?Dev said on his patreon v11 final will be ready 36 hours
For now there are four different control methods (depending on the "when" you are with the events of the game) that regulate sunbathing:What are the conditional variables for the Sunbathing option to appear?
Why do you keep calling it a problem or a bug, when it's part of the story that some events are there or not at a certain moment? What is the point of modifying the variables to make a choice reappear, when it shouldn't be there at that moment? Then it is useless for anyone who creates a game, to study different situations, to obtain different events according to our choices (and when I talk about bug, I was referring to when there was an apple problem and the game returned to the menu, that it was something to correct. not the fact of having the sunbathing today and not tomorrow ....)I was digging about this problem because that happens to me too. It turns out, after Cynthia gets home you have one more chance to get the sunbathing option. That will lead you to the event with Linda, after that there is a variable (dancheck) that has to be 0 so that event happens. After the event happens the variable change to 1, so the condition to the sunbathing cannot be met, therefore it doesn't show up. I have been tinkering around to see if there is a way to solve it or making it appear like is supposed too. If you make the variable 0 again you will get sunbathing back but you just going to repeat the event and the variable will go back to 1. I was hopping that someone would help out in this problem.
Yes, yesterday i went into the script and checked the conditions. Apparently the last 2 are the one that should be active when Cynthia is at home. The first one is before Cynthia and the second one is after Cynthia. The problem is that by the time I got Cynthia my dct was 9 so, it would trigger the 4th option. But then the 4th option only triggers when dancheck=0 but that option makes dancheck=1 so you can only enter once. I also tried to change the dct<2 to a dct>2 (changing the other one to <=2) to see if something changes but nothing. It is weird that nothing changed, it should trigger because I met the conditions. So my conclusion is that maybe my dct should not be bigger than 2 when I get Cynthia, but then once my dct>=2 you lose the option again. I'm not criticizing the game, it is a pretty good sandbox and those are difficult to make and optimize. I'm just reporting my problem, to see if some one could advise me or help me. If is not a problem and it is meant to work that way then i will gladly stop talking about it.For now there are four different control methods (depending on the "when" you are with the events of the game) that regulate sunbathing:
"Sunbathing?"if Mevent4>=4 and cact == 0 and aftercyn == 0:
"{color=#CF05F7}Sunbathing?{/color}" if aftercyn == 1:
"Sunbathing?"if Mevent4>=4 and cact == 1 and dct<2:
"{color=#00ff00}Sunbathing?{/color}"if Mevent4>=4 and cact == 1 and dct>=2 and dancheck ==0: