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

Thank you for your thoughts. 

Thank you for your kind words about my self-insert character. I thought this might be a better way than anything else.

As for the cannon in the sequel: I have to think about that myself. But I have made a note that I should summarize what happened "in cannon".

And about Ronny, if he disappeared after the kick then you missed out on the storyline with the principal.

About a galery: I'm not that good at programming and I have no idea how to do that (even after some tutorials). I suspect that when a programmer sees my coding he'll get a heartattack.

My name in the developer section? Isn't NephremKa enough? :(

Again thanks for playing and for your comment.

(+1)

Developer: NephremKa
If you like my work consider: BuyMeACoffee, SubscribeStar, Patreon, Itch.io
Report Bugs to @Twitter

You made a nice game so don't be afraid to advertise.  Probably could have made some money if you paid polled some sex scenes along with waifu polls (people will pay to defend a good waifu)   ;P Though that might have kept this going for much longer since fans always want more of a good game...

I'm pretty sure Renpy has Gallery Settings built in but you need to compartmentalize the scenes in labels and write up the display.
Example:
if renpy.seen_label("familyyes"):
imagebutton auto "images/thumbnails/familyyes_%s.png" action Replay("familyyes")

%s
hover, idle

else:
If it wasn't seen yet then a locked image.  Though instead of auto you probably would just want idle.

That reads Data off a persistent save.  If you wanted to offer a Full Gallery Cheat then a bit of code to populate the Persistent Dictionary
$ renpy.game.persistent._seen_ever["familyyes"] = True

Might need to throw a few more variables in persistent for replay purposes or use something like
if _in_replay:
To define some variables needed for the scene.  Though variable management might make this unnecessary.

https://lemmasoft.renai.us/forums/viewtopic.php?t=46976

I doubt a heart-attack, for Renpy it seems fine, sure some optimization could be done (ie use more labels for scenes) but I wouldn't sweat the small stuff.  You never learn unless you try.

Yeah I probably did miss the Principle's storyline, along with several others.  Went for Rubi and was happy with her ending though would have liked to went out with a bang inside and possibly an ominous warning about having more children.  Wanda didn't seem to have the happy housewife ending as I told Rubi no just to see what would happen.  But as I said earlier added Replay-ability.