2.70 star(s) 13 Votes

zeerin

Member
Nov 9, 2017
475
694
Seeing a lot of negative comments here, but what you're all failing to notice is that the dev knows how to properly mix his/her volume so it doesn't blast out eardrums even at pc half volume. And there's whales in the kitchen.
 
  • Like
Reactions: thesaints147

Hush16

Newbie
Jul 24, 2017
42
71
oh yeah, this one...

same dev who did 'Melissa's Studies'. Same clunky interface, same lack of direction, same poor translations.

he seems to be getting worse at making games as time goes on - I really liked his first one (Luxuria), it had more-or-less linear gameplay that you could follow (and a cute blueberry colored demon chick). M'sS tried to be more sandbox, but I think it got away from him and it was VERY grindy and never clear how to make several events trigger. This one looks to be more the latter.

give it a shot if you want, but don't expect too much!
 
  • Like
Reactions: tappp92

ThunderRob

Devoted Member
May 10, 2018
9,497
26,519
I wonder if that's how smart average ntr fan is... You see mr funny guy, there is no tag for avoidable ntr. For protagonist on the other hand you have multiple tags: male/female/futa, character creation etc.

So asking if ntr is avoidable is a pretty good question, unlike your attempt on being funny.
he was commenting on the generic ugliness of HS male MC faces..your attempt at scolding/trolling failed...
at-least-you-tried-gif.gif
 

leathermax

Well-Known Member
Feb 10, 2019
1,227
3,465
Bruh, what is it that I have to do for some h to happen? I've raised the sister's corruption level up to 17, with 12 affection, and the mother has 16 affection. Plus, I have the book and the tool kith, both of which I've used, and yet none of those scenes displayed here happen. Don't tell that I have to grind 500 dolars to buy the sister's dress because that's straight out abusive.
 

nickzeik

Newbie
Sep 24, 2018
65
110
Was this even play-tested? Why build in a hint facility and then provide absolutely no clue what to expect. I didn't understand why people were throwing shade on the sandbox concept until I played this for a couple of hours. Yipes! Not enough content to torture people for so long. The whole thing seems such a random waste of time. It's a shame, because the characters and concepts are there. And the title make's no sense in context to what the game is right now. I will follow and hope for the best, but I think the entire game play may need to be recast.
 
  • Like
Reactions: theinternetis4

jazz154

Active Member
Jul 21, 2017
559
811
he was commenting on the generic ugliness of HS male MC faces..your attempt at scolding/trolling failed...
View attachment 781541
Or he could be making fun of how usually in games with ntr there is always question if it's avoidable, but since you can read minds of others I guess I have no choice but to believe you... I don't even think that male protag is that ugly, if anything I would say he is mediocore (I've seen way worse), but then again all I can is to look at screen shoots since I am not too interested in ntr games.

Well anyway, are you also saying that other two were asking similiar questions because vaginal sex and sandbox is terrible in this game? Just curious since they popped up right after each other. From what I can read from other comments it seems like game is very bad so it may be the case.
 

ThunderRob

Devoted Member
May 10, 2018
9,497
26,519
Or he could be making fun of how usually in games with ntr there is always question if it's avoidable, but since you can read minds of others I guess I have no choice but to believe you... I don't even think that male protag is that ugly, if anything I would say he is mediocore (I've seen way worse), but then again all I can is to look at screen shoots since I am not too interested in ntr games.

Well anyway, are you also saying that other two were asking similiar questions because vaginal sex and sandbox is terrible in this game? Just curious since they popped up right after each other. From what I can read from other comments it seems like game is very bad so it may be the case.
some comments below his original post he clarified about ugly HS MC
 
  • Angry
Reactions: jazz154

bosa43

Active Member
Oct 20, 2017
821
934
I can't pogress, any help?
Get money by cleaning the house on Saturdays, save money for math book, teach sister math, eventually get access to computer, put porn on slides to increase corruption. You repeat teach sister and porn slides and eventually knew stuff pops up. It's very grindy.
 
  • Like
Reactions: canal mom

OvidiusLian

Member
Jan 28, 2018
122
136
To the developer and developers 2 python tips

Python:
# block like this
if event34X6==1:
    if event13X6==0:
        show screen eeX4 # this only executes if the event34X6==1 AND event13X6==0 are True
    else:
        hide screen NA # same else condition
else:
    hide screen NA  # same else condition

# should be
if event34X6 == 1 and event13X6 == 0:
    show screen eeX4
else:
    hide screen NA

# shorter and cleaner
Python:
# this code runs but is bad, a cascade of Time and Day
if TIME==1:
    if Day==1:
        show screen KUX3
        #...
    else:
        if Day==3:
            show screen KU
            #...
        else:
            if Day==5:
                show screen KU
                #...
    else:
        if TIME==3:
            if Day==1:
                show screen KUX3
                #...
            else:
                if Day==3:
                    show screen KU
                    #...
                else:
                    if Day==5:
                        show screen KU
                        #...
# should be
if TIME == 1:
    if Day == 1:
        show screen KUX3
        #...
    elif Day == 3:
        show screen KU
        #...
    elif Day == 5:
        show screen KU
        #...
elif TIME == 3:
    #...       
    if Day == 1:
        show screen KUX3
        #...
    elif Day == 3:
        show screen KU
        #...
    elif Day == 5:
        show screen KU
        #...
# only smaller, cleaner and readable, where are the block for Time and Day, less prone to errors
in another language this would be a switch
 
2.70 star(s) 13 Votes