Create your AI Cum Slut -70% for Mother's Day
x

ffive

Devoted Member
Jun 19, 2022
8,063
19,079
On that note, there's also a minor bug on day 5:
Python:
    if exam > 1:
        show emily casual smile
        e "I passed mine too, actually. I was so relieved."
//...
    else:
        show emily casual sad
        e "I didn’t do so well... I failed."
This check should be for exam > 0 instead. The game records passed exam as 1 and failed as -1 (or -2 if Emily has pissed of Harris) As it is, Emily will claim she has failed even when she actually passed.
 

Elduriel

Forum Fanatic
Donor
Mar 28, 2021
5,642
10,686
I found the problem. For some reason code was left in the game to go to the to be continued screen on day 5. To hotfix it:
  • Unrpa the files
  • Under 'Game' folder edit 'D5.rpy'
  • Delete/Comment lines 23 and 24 (see below for exact lines)
  • Save and Exit
  • Delete D5.rpyc (it's the compiled D5.rpy, it's compiled when you restart the game)
  • Play!
The reason for the code problem is that on lines 23 and 24, of the D5.rpy you see this:

Python:
label D5:
    $ nameday = "Friday"
    $ day = 5
    $ moment = "morning"
    $ random_percent = get_random_percent()

    #correction [day4 alpaha]>[beta]
    if jules == "fuck" or jules == "suck":
        $ jules_fucked= True

    if end=="day4":
        jump tobecontinued
As you can see, the last two last lines jump to "to be continued" which was left over from the previous build. Remove those two, or comment them out, and voila it works!

Also, of interesting note, there is some code all the way through to Day 7. I didn't look at it, and there may be broken code or missing images, but there is stuff there.

Edit: Also, fun fact. These appear to be the character you can, or will be able to, "interact" with, set as Booleans (True/False):
You don't have permission to view the spoiler content. Log in or register now.
and I just deleted the whole thing a minute ago :KEK: I like it, but can't be bothered to download again and do whole fixing thing. When a bugfix is posted maybe. But appreciate you looking into it for us
 
  • Sad
Reactions: cooldevo

cooldevo

Active Member
Jan 30, 2021
791
908
and I just deleted the whole thing a minute ago :KEK: I like it, but can't be bothered to download again and do whole fixing thing. When a bugfix is posted maybe.
I was just about to do that myself, but at the final confirmation Yes/No I realized it was lunch time and since I'm working from home it'd be fun to play around with over lunch. I figured it would've been something easy to fix.... that and I didn't want to restart that many different paths I've taken... there's so many different combinations and jobs to take. o_O

If you didn't delete the saves, it's easy enough to download it once it's fixed.
 

cooldevo

Active Member
Jan 30, 2021
791
908
On that note, there's also a minor bug on day 5:
Python:
    if exam > 1:
        show emily casual smile
        e "I passed mine too, actually. I was so relieved."
//...
    else:
        show emily casual sad
        e "I didn’t do so well... I failed."
This check should be for exam > 0 instead. The game records passed exam as 1 and failed as -1 (or -2 if Emily has pissed of Harris) As it is, Emily will claim she has failed even when she actually passed.
Hadn't come across that yet, as on just one playthrough she just wrote the exam (had study of 3 I think). Good to know in advance...
 

Elduriel

Forum Fanatic
Donor
Mar 28, 2021
5,642
10,686
I was just about to do that myself, but at the final confirmation Yes/No I realized it was lunch time and since I'm working from home it'd be fun to play around with over lunch. I figured it would've been something easy to fix.... that and I didn't want to restart that many different paths I've taken... there's so many different combinations and jobs to take. o_O

If you didn't delete the saves, it's easy enough to download it once it's fixed.
no I have the saves (and the backup of it), have a full library of those. And one on gdrive :ROFLMAO:
1746811554104.png
 
  • Heart
Reactions: cooldevo

Birdnman993

Well-Known Member
Dec 6, 2021
1,489
2,262
This looks nice, definitely has to be on my to-do list, it's always nice when 2D games come out, now I hope it doesn't get abandoned abruptly.
 

cooldevo

Active Member
Jan 30, 2021
791
908
On that note, there's also a minor bug on day 5:
Python:
    if exam > 1:
        show emily casual smile
        e "I passed mine too, actually. I was so relieved."
//...
    else:
        show emily casual sad
        e "I didn’t do so well... I failed."
This check should be for exam > 0 instead. The game records passed exam as 1 and failed as -1 (or -2 if Emily has pissed of Harris) As it is, Emily will claim she has failed even when she actually passed.
The exam variable doesn't look to be used in the logic of pass/fail for the exam. It looks to be used as a running total on her overall exam status.

When looking at the exam results, if Emily:
  • has Harris angry at her, you always fail; 'exam' variable gets -=2
  • studied with Harris (not angry) and has Study <1, she passes having done "really well"; 'exam' variable gets +=1
  • studied with Harris (not angry) and has Study >= 2, she passes with "flying colors"; 'exam' variable gets +=1
  • has study <= 1, she fails; 'exam' variable gets -= 1
  • studied with Liam and has Study >= 2, she passes with "flying colors"; 'exam' variable gets +=1
  • else: she passes with "flying colors"; 'exam' variable gets +=1
I tested a couple of playthroughs when Emily looks at the exam results. So if 'exam' is assessed elsewhere I haven't come across it yet.


Edit: Oh I see much further in the chapter, as exam 1 or 2 is a pass. Exit the game; replace line 2105: if exam > 1: with if exam > 0:; delete day5.rpyc; restart the game.

It's not a critical bug fortunately, as there are no variables changed or assigned there. The rest of the game considers her having passed.
 
  • Like
Reactions: ffive

JadeKitten

Member
Donor
Apr 27, 2017
400
538
Another bug... Andrew bj scene in the club bathroom has no images :/ Can't find it in the game files either. Why did they release such an unfinished version??
 

ffive

Devoted Member
Jun 19, 2022
8,063
19,079
Another bug... Andrew bj scene in the club bathroom has no images :/ Can't find it in the game files either. Why did they release such an unfinished version??
Some of the scenes don't have gfx yet, only placeholders that will be added later. I guess it's a compromise between releasing updates or holding the whole thing back so all assets are there which, given it's hand drawn stuff, could take weeks.
 
3.90 star(s) 11 Votes