PICK YOUR BEST GIRL!

  • Speranza

    Votes: 288 16.9%
  • Anna

    Votes: 164 9.6%
  • Solera

    Votes: 219 12.8%
  • Kety

    Votes: 464 27.2%
  • Madame

    Votes: 110 6.4%
  • Salma

    Votes: 139 8.1%
  • Guenda

    Votes: 37 2.2%
  • Shiva

    Votes: 85 5.0%
  • Nella

    Votes: 74 4.3%
  • Killa

    Votes: 127 7.4%

  • Total voters
    1,707

Spicy Well Studio

Ass Eater
Game Developer
Nov 29, 2023
201
923
226
Ohhhh thank you, it must have been an awkward timing between me downloading and playing it that it was fixed lol sorry.
I realized there was a bug thanks to your comment and I fixed it right away, so thank you very much for pointing it out immediately.


It was a bug that affected those who started or restarted from scratch, so it had slipped by me.

Super thanks
 
  • Like
Reactions: Lerd0

Greily

Member
Mar 4, 2018
241
471
215
The doctor has my attention. I will play this game. Something special about a woman with a death glare like that who is also your savior.
 
  • Heart
Reactions: Spicy Well Studio

batanegra

Member
May 8, 2017
425
97
215
I'm the Shiva quest that says Visit the Shop, but it doesn't trigger anything, do i have to go certain day? time?
 

malcolmalbie

Active Member
Oct 8, 2018
867
1,936
298
btw PozzGames, scripts/character/condition_def.rpy can be tidied up a lot. For example, code like
Python:
def c_unlock_pizza():
    if dev.story == 2 or c_unlock_start():
        return True
    return False
can instead be rewritten as
Python:
def c_unlock_pizza():
    return dev.story == 2 or c_unlock_start()
If you have a more complex code, like
Python:
def condition_p2():
    if dev.story == 8 and momgirl.story == 3 and sisgirl.story == 9 and gymgirl.story == 6 and maidgirl.story == 14:
        if  toxgirl.story == 10 and anxgirl.story == 11 and docgirl.story == 3 and slavegirl.story == 16:
            if pubgirl.story == 5 and gothgirl.story == 2 and shopgirl.story == 3:
                if  "BCSS1" in side_event and "SSSB1"  in side_event:
                    return True
    return False
you could instead write it as
Python:
def condition_p2():
    return (
        dev.story == 8
        and momgirl.story == 3
        and sisgirl.story == 9
        and gymgirl.story == 6
        and maidgirl.story == 14
        and toxgirl.story == 10
        and anxgirl.story == 11
        and docgirl.story == 3
        and slavegirl.story == 16
        and pubgirl.story == 5
        and gothgirl.story == 2
        and shopgirl.story == 3
        and "BCSS1" in side_event
        and "SSSB1" in side_event
    )
 
Last edited:
  • Like
Reactions: Trans boy uwu

Jackjones181

New Member
Aug 26, 2018
12
1
13
tbh Kety kinda scares me ngl (totally didntjump out of my chair when she said my username or after saying 3 times no) but i really enjoy the game so far and am curious whats gonna happen next (even tho i forgot to save before the yes or no option and have to go through alot again)
 
  • Like
Reactions: Spicy Well Studio

Spicy Well Studio

Ass Eater
Game Developer
Nov 29, 2023
201
923
226
tbh Kety kinda scares me ngl (totally didntjump out of my chair when she said my username or after saying 3 times no) but i really enjoy the game so far and am curious whats gonna happen next (even tho i forgot to save before the yes or no option and have to go through alot again)
You are only in early game
 

Hik9

Newbie
Oct 9, 2022
46
21
107
I'm stuck on Anna's quest. I did every other girl, but her event doesn't trigger. I visit every afternoon but nothing... I'm missing something?
 
  • Heart
Reactions: Spicy Well Studio
3.10 star(s) 12 Votes