Sparhawker

Well-Known Member
Mar 23, 2022
1,208
395
206
so the cards for the game are not collectable once you've passed that point...what I mean you can't add an old save for a game you lost to get that card....that sucks and basically means I will not ever be playing that again.
Just finished ch4 and not sure if I'll go back to it. Really not clear what the choice with the Twins will impact either...I mean they seem to be saying that if you choose to be their boyfriend then all other girls are not allowed, but soon after that is the squirting scene and then you go on the date with Ella...so bit baffled.
Love the graphics in this (nice life like pussies and buttholes) and all the girls are amazing, but the story line and the attribute choices I am really not sure of (the while Light vs Dark thing seems to be saying that you will not get a LOT of scenes)
 
  • Like
Reactions: Mutinity.Moon

anon9gg

Newbie
Feb 2, 2025
24
39
13
bug at the start of episode 3 -> the var 'el_fucked' is always sets to True:
Python:
    if "She thought the sex was mediocre." or "She thought the sex was good." or "She told me it was the best sex she's ever had!" in el_choice:
        $ el_fucked = True
the if result here is always the first str because a non-empty str (or any other sequence) is evalued to True
this basically can be read as: if True or True or "She told me it was the best sex she's ever had!" in el_choice:
each str must be passed individually into the 'in' operator (or i could make a wrapper to make things easier):
Python:
    if "She thought the sex was mediocre." in el_choice or "She thought the sex was good." in el_choice or "She told me it was the best sex she's ever had!" in el_choice:
        $ el_fucked = True
same in ep3.rpy at l:902
Python:
    if "Nina stole Dr. Novotná's keycard!" or "I stole Dr. Novotná's keycard!" in ni_choice:
-> i saw the same mistake happens many time in ep4, so im not going to make a list because everything should be double-checked there


bug at the end of halloween party in ep4:
when you punch the dickhead, tasha points is increased twice and i assume one statement was meant for ashley here (ep4.rpy l:14803)
Python:
            $ t_love += 10
            $ t_love += 10
retro-active fix attached:
  1. load your save
  2. a message shows up if it worked
  3. save then you can remove the script


2 bugs with the cards collection system:
  • you need more battlepoints than the amount required to purchase a card due to the comparison is not greater or equals '>=' at shiny_cards/card_viewer.rpy l:30:
    Python:
                sensitive battlepoints > card.price
  • buying cards reduces skillpoints (from perk tree) instead of battlepoints (for winning cards game) shiny_cards/shiny_cards_code.rpy l:22:
    Python:
        def purchase_card(card):
            global skillpoints
            deck_real.add(card)
            skillpoints -= card.price

idk whats up with the E4 client but my saves are now like 10 time heavier compared to the previous episode

note: everything in this post was from E4-GOLD version
 

PEscobar

Member
Oct 5, 2022
145
117
78
I finished but, I missed out on some scenes, I think if you don't take it farther with Saki you don't get anything from your flatmates like the twins, can anyone confirm before I go back and replay..
 

Mutinity.Moon

New Member
Apr 6, 2025
3
5
3
so the cards for the game are not collectable once you've passed that point...what I mean you can't add an old save for a game you lost to get that card....that sucks and basically means I will not ever be playing that again.
Just finished ch4 and not sure if I'll go back to it. Really not clear what the choice with the Twins will impact either...I mean they seem to be saying that if you choose to be their boyfriend then all other girls are not allowed, but soon after that is the squirting scene and then you go on the date with Ella...so bit baffled.
Love the graphics in this (nice life like pussies and buttholes) and all the girls are amazing, but the story line and the attribute choices I am really not sure of (the while Light vs Dark thing seems to be saying that you will not get a LOT of scenes)
I maybe wrong, but I think the work around would be the "Harmony" perk for that, as it states something about keeping girls who would otherwise be against such things like Ashley and Tasha for example, as after that bedroom scene the mc still have not interacted with the Twins again.
 
4.60 star(s) 80 Votes