Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

MC and BFF are confused about the time when kissing on weekend morning (love makes, uh, timeless?).

The possible ends of `label BFF_kiss_pants_repeat_night` should check for the time, something like

if time_day >= 4:
    BFF "Good night, [name]."
    show bg bff kiss pants night 31
    PC "Good night, [friend]."
else:
    BFF "Have a wonderful weekend, [name]."
    show bg bff kiss pants night 31
    PC "Thanks. You too, [friend]."

(plus the others, with the images 35 and 39. and all scene ends I missed :))

Huh, after all this time you're actually the first person to notice these!

Thanks, I'll fix both of those for the next update :)

"Better for seeing you" if "1: pic tits" not in em.choices or "1: pic bum" not in em.choices or "1: pic both" not in em.choices:

I think your condition in scenes/emily.rpy::498 does not what you wanted to accomplish: This one is shown until all three pics are taken, I'd guess it was meant as the fallback option before any photo shoot.

Should I be right this one can be rewritten as

"Better for seeing you" if not ("1: pic tits" in em.choices or "1: pic bum" in em.choices or "1: pic both" in em.choices):

or

"Better for seeing you" if "1: pic tits" not in em.choices and "1: pic bum" not in em.choices ad "1: pic both" not in em.choices:

and done, I think I saw everything except some missed phone images (too lazy to crosscheck the code and indentify the ones I did not collect).

I like your game, nice visuals and a not very original but working story around it to keep it all together.

looking forward to the next release

It's not possible to collect all of the phone backgrounds in one playthrough by design.

Glad you enjoyed it, thanks for playing! Next update is still a little ways off, but I'm excited to get it out there. Cheers!

This one seemed to work as written, but I decided to just remove the conditions anyway so it's always an option.