So fixing the two game breaking bugs I ran into:
In the file "game\Rpy\Map\map.rpy" find this line (Line 71)
Code:
if Eolivia11 == 11 and Logantalk2 == False and Dayset == 5 and Maptime == 1:
and change it to this (just delete the "11" off of "Eolivia")
Code:
if Eolivia == 11 and Logantalk2 == False and Dayset == 5 and Maptime == 1:
Save
There is also a bad bug on Day 12 that causes a loop if you're in VN Mode and choose to take the quiz. That's because the 2nd science class uses the same victory label as the first Earth puzzle one and the code wasn't properly changed.
In the file "game\Rpy\Day05\Class05.rpy"
This is what the code currently is:
Code:
label Victory_Sci:
scene Class0005 with dissolve
n "You win!"
if Loganclass == 1 and Mapmode == 1:
jump Legais
if Mapmode == 2:
jump Legais
else:
jump Time
So for starters the condition for Mapmode is irrelevant for the first class when that variable can only be 1 or 2 and both have the same jump? (Is that intentional?) But then more importantly it's missing the jump to the Ryantalk label for the second class in VN Mode. So at least for now (until another science class occurs if it uses this label) I feel like it should be:
Code:
label Victory_Sci:
scene Class0005 with dissolve
n "You win!"
if Loganclass == 1:
jump Legais
if Mapmode == 2:
jump Ryantalk
else:
jump Time
----
The pool sex scenes are an absolute mess, for starters:
Olivia - Missionary - Cum Inside/Cum Outside are Reversed
OliviaNTR - Ekiban - Cum Inside/Cum Outside are Reversed
Emily - Doggystyle - Cum Inside/Cum Outside are Reversed
Emily/Ryan - Doggystyle - Cum Inside/Cum Outside are Reversed
Then there are two crashes:
For Olivia:
In the file "\game\Rpy\Day13\Oliviasex.rpy"
Code:
$ renpy.movie_cutscene("videos/Pool/Olivia06.webm", delay=-1, loops=99, stop_music=False)
change ".webm" to ".mp4"
Do the same thing for the lines for Olivia07.webm thru Olivia15.webm, all of them should be ".mp4" (Olivia01 thru 05 are correct as webm so don't do a replace all!)
For Alexis:
In the file "\game\Rpy\Day13\Alexissex.rpy"
Code:
$ renpy.movie_cutscene("videos/Pool/Alexis5.webm", delay=-1, loops=99, stop_music=False)
change "Alexis5.webm" to "Alexis05.webm"
For the Menage:
The scene videos are all wrong for Cowgirl/Cunni and Doggy. "Menage06.webm" is actually a duplicate of "Menage01.webm" the first scene of the BJ sequence. So if you want to fix that either go into the video folder "\game\videos\Pool" delete "Menage06.webp" and then rename "Menage07" to "Menage06" and so on decreasing each videos number until "Menage16" is "Menage15" or else edit the numbers increasing "Menage06" to "Menage07" and so on until you increase "Menage15" to "Menage16" in the "\game\Rpy\Day13\Menageclub.rpy" file.
---
I'm attaching a zip file with all the fixed RPY files if you don't want to edit them yourself. But make sure to they go in the correct subdirectories overwriting the original files (or rename the original files to a .bak extension) otherwise you will get duplicate label errors. These fixes are also ONLY for v0.7.0 as these files are likely subject to change in future versions.
---
On an different note... I don't think the dev knows what the term "sister-in-law" means, as it is definitely not a synonym for a stepsister like it was used during the pool scene...