3.10 star(s) 10 Votes

kira123

Member
May 27, 2017
183
113
Delete the numbers and underscore before the "patch" in the name of the file
I have not played the game yet but I'm just curious why the developer not editing the script so it will be like "she is your.....? (default landlady)" then we can change the landlady name easily to mom. Is it not allowed now in Patreon?
 
  • Like
Reactions: Budman 1959
May 29, 2022
231
428
I have not played the game yet but I'm just curious why the developer not editing the script so it will be like "she is your.....? (default landlady)" then we can change the landlady name easily to mom. Is it not allowed now in Patreon?
No idea. A lot of games have it so I'm guessing Patreon doesn't mind, however I think there was a case where Patreon requested a creator to remove the relationship naming system and the creator had to stick with the landlady/roommate route. I'm not sure if it was real, or if I was just high.

See - it's so simple you could make the code yourself. Here's a quick rundown on how I would do it - but there's probably a fancier way of doing so. Practically in the same way as naming the MC.

Python:
define sarah = Character(_("Sarah") ## Let's say - in this example, Sarah is the mother.
define stacey = Character(_("Stacey") ## And in this example, Stacey will be our sister.

default sarah_relation = "Landlady" ## Sarah will become the landlady because of Patreon.
default stacey_relation = "roommate" ## Stacey will become the roommate because of Patreon.

label relationship_naming:
    "This is Sarah."
    "She's an outgoing, calm and likeminded lady."
    "She is also quite motherly."
    $ sarah_relation = renpy.input("She is my.. (Default: Landlady)", "landlady"
    $ sarah_relation = sarah_relation.strip() ## Removes any spaces. Of course, this is optional.

    ## Doing this will capitalize the first M. However, you can always just use the !cl at the end of
    ## the mom's variable to automatically captialize it.
    
    # if sarah_relation = "mom":
        # $ sarah_relation = "Mom" #

    "And this is Stacey."
    "She's quite playful, and she's very cute."
    "She exhibits traits of a little sister."
    $ stacey_relation = renpy.input("And she is my.. (Default: roommate)", "roommate"
    $ stacey_relation = sarah_relation.strip() ## Removes any spaces. Of course, this is optional.

label start:
    "Who is that? She looks cute."
    "Oh, that's Stacey, my [stacey_relation]."
    "And who's that MILF over there?"
    "That's Sarah, my [sarah_relation]."
    "How cute!"
Might be a bit rough since I had to do it quick, but that's a quick and easy way to change relationships in Ren'Py. This is also fun because then you can rename relationships for certain ladies to become step-relatives, or adoptive relatives.
 
  • Like
Reactions: kira123
May 29, 2022
231
428
The models looks like early versions of plastic toy ''ActionMan'' , and the story is not much better.
Crap - overall.
Personally I think this game has potential. Sure, some of the models look a bit rough in some areas, but the only real issue is the writing, spelling, grammar, punctuation, and capitalization, and also the coding. But this is a new dev just starting to arrive in the adult gaming industry, which is a somewhat niche market. And it's an industry where you have to dress to impress, but this dev practically dressed in pajamas.
 

Crowangel

Well-Known Member
Dec 12, 2021
1,088
1,641
Mia's hair could do with changing.. every time someone uses that hairstyle now i cringe as the ugliest pigtails set out there.. there are far FAR better styles on daz in a pig tail fashion if thats what your going for with the character but PLEASE not that one its ugly as hell and ruins her characters look
 

Crowangel

Well-Known Member
Dec 12, 2021
1,088
1,641
Renders are nice aside from as said before Mia's hair.. and you need to work on your character posing for a scene.. you had 3 women stood side by side not facing one another holding direct conversations with one another.. that wouldn't happen.. you should have at least turned the model to face the person they were directing the conversation towards.. it felt more like lazy rendering tbh

addition - i gave up as soon as Ayuko appeared at the door.. i take back the nice renders comment.. the fashion sense is terrible sorry and it just seemed very cheaply done and lost my interest
 

BigPaul

Active Member
Modder
Oct 9, 2017
622
1,365
Nice start, Renderings and hot woman, I am curious where the story goes.
I have make a Milfania[Demo] german translation.
( Please put the link on the first page thank you )
 

ANDERSONKUN1

Member
Aug 26, 2018
193
286
After a grueling few hours or so, I managed to make an Incest patch, that also improves the grammar and spelling mistakes. I'll put in a list of what I have added. Sadly - I am not a comedian, so expect there to be some cringe.
  • Changed the Dynamic names to add incest
  • Removed unused labels and meaningless choices (Well, all of the choices are kind of meaningless but I removed the ones that actually didn't do anything, such as the choice where MC chooses to jerk off or not, but you don't actually get to jerk off)
  • The doorbell ringing gets looped so I fixed it
  • Added some quotes to make the text just a little more condescending (Indirect implications are sometimes my favorite, lol)
  • Added some wait tags
  • Added some comedy and humor - who doesn't love a funny porn game?
  • Created a "POV" character, so if the name disappears, it's the MC talking.
  • I assumed Bruce was supposed to be the Dad but had to be renamed to Landlord because of stupid Patreon, so I made Bruce the father of the MC and Amanda.
  • It appears that there were 2 N's defined, which caused Nicole's name to show up as "Unknown" instead of "Nicole". I fixed it by transferring all of Nicole's dialogue before she reveals her name to my custom defined "Unknown" character.
  • Some choices were quite useless and jumped to undefined labels. I removed the unused labels.
So, that's what I fixed and added. And the installation? Replace the "scripts.rpa" file with this one. Make sure to backup the original file if anything goes wrong. Happy incest-ing.
dont work
I'm sorry, but an uncaught exception occurred.

Before loading the script.
ValueError: unsupported pickle protocol: 5

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "renpy/bootstrap.py", line 331, in bootstrap
renpy.main.main()
File "renpy/main.py", line 427, in main
renpy.loader.index_archives()
File "renpy/loader.py", line 244, in index_archives
index = handler.read_index(f)
File "renpy/loader.py", line 129, in read_index
index = loads(zlib.decompress(infile.read()))
ValueError: unsupported pickle protocol: 5

Windows-10-10.0.19041
Ren'Py 7.4.11.2266

Sat Aug 6 22:19:08 2022
 
May 29, 2022
231
428
dont work
I'm sorry, but an uncaught exception occurred.

Before loading the script.
ValueError: unsupported pickle protocol: 5

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "renpy/bootstrap.py", line 331, in bootstrap
renpy.main.main()
File "renpy/main.py", line 427, in main
renpy.loader.index_archives()
File "renpy/loader.py", line 244, in index_archives
index = handler.read_index(f)
File "renpy/loader.py", line 129, in read_index
index = loads(zlib.decompress(infile.read()))
ValueError: unsupported pickle protocol: 5

Windows-10-10.0.19041
Ren'Py 7.4.11.2266

Sat Aug 6 22:19:08 2022
Strange.. SHIT. I think it may have been the version I was working with. I'm not sure what that could be.. but it's probably the Ren'Py version I used to compile the script.. damn it
 

bobdillan

Forum Fanatic
Nov 18, 2016
4,148
9,341
A Suggestion though...please consider adding in detail (main page), if there will be any NTR content, and of course which type. The NTR tag represents more than one type of fetish. And of the three, the masses dislike anything that could make MC jealous. Like sharing, and if a Li is cheating on MC, and or is stolen from MC, etc.
Uhhhh, NTR represents the NTR fetish...
Just that it can be broken down further, into those that prefer cheating, those that prefer it to be rape, and those that prefer MC to be into it, which even has it's own dedicated tag being Netorase.

All NTR is where the LI is stolen from MC though.. like it is in the name Netorare meaning "To be taken from." (the three types so to speak, typically being noted as A,B,C referring to the method, A being cheating, B being rape, and C being rape that leads to cheating).
Common misconception is thinking it stands for more than Netorare, which it doesn't. (Netorase is a sub-genre though, which is part of the cause for confusion).
Netori ("To take") is off being its own thing just like Reverse-NTR is. (reverse being where MC is the one being stolen, usually only used for male protags though).

Sharing while you can technically classify it in a way as coming under that meaning "To be taken from." isn't under NTR and is it's own thing. (although to people who dislike and/or hate NTR there is usually no difference, cause it comes from a similar place).

So for whether it has or doesn't have, a simply yes or no would suffice, and for those that don't instantly ignore the thread with that tag, whether or not it is avoidable.

As for Netori... well that isn't NTR sooo no issue there. although to tag it, you use the cheating tag.

Dr. Phoenix Games While on the topic, I highly HIGHLY recommend you make a choice now whether or not you will include this controversial genre (NTR), since you will save yourself a lot of trouble and thread clutter, and angry people (from either side).
Since some will want to ignore you game now if you do include it (avoidable or not).

If you plan to include harem, then I highly suggest you don't include NTR at all, since it is a conflicting genre and just doesn't mesh well (and even if optional it taints the characters that it can happen with just but it being an option, e.g. a loyal character can't be seen as loyal if there is a route where they cheat on MC, cause well that ain't loyal).

Anyway, make the game you want, and only allow for polling on genres you don't mind doing or adding. (you don't want to make content you hate, or content your main audience will hate, because of a few)

P.s. apply for dev tag by asking mod or making a ticket.
 
Last edited:

Dr. Phoenix Games

Newbie
Game Developer
Aug 3, 2022
21
130
Uhhhh, NTR represents the NTR fetish...
Just that it can be broken down further, into those that prefer cheating, those that prefer it to be rape, and those that prefer MC to be into it, which even has it's own dedicated tag being Netorase.

All NTR is where the LI is stolen from MC though.. like it is in the name Netorare meaning "To be taken from." (the three types so to speak, typically being noted as A,B,C referring to the method, A being cheating, B being rape, and C being rape that leads to cheating).
Common misconception is thinking it stands for more than Netorare, which it doesn't. (Netorase is a sub-genre though, which is part of the cause for confusion).
Netori ("To take") is off being its own thing just like Reverse-NTR is. (reverse being where MC is the one being stolen, usually only used for male protags though).

Sharing while you can technically classify it in a way as coming under that meaning "To be taken from." isn't under NTR and is it's own thing. (although to people who dislike and/or hate NTR there is usually no difference, cause it comes from a similar place).

So for whether it has or doesn't have, a simply yes or no would suffice, and for those that don't instantly ignore the thread with that tag, whether or not it is avoidable.

As for Netori... well that isn't NTR sooo no issue there. although to tag it, you use the cheating tag.

Dr. Phoenix Games While on the topic, I highly HIGHLY recommend you make a choice now whether or not you will include this controversial genre (NTR), since you will save yourself a lot of trouble and thread clutter, and angry people (from either side).
Since some will want to ignore you game now if you do include it (avoidable or not).

If you plan to include harem, then I highly suggest you don't include NTR at all, since it is a conflicting genre and just doesn't mesh well (and even if optional it taints the characters that it can happen with just but it being an option, e.g. a loyal character can't be seen as loyal if there is a route where they cheat on MC, cause well that ain't loyal).

Anyway, make the game you want, and only allow for polling on genres you don't mind doing or adding. (you don't want to make content you hate, or content your main audience will hate, because of a few)

P.s. apply for dev tag by asking mod or making a ticket.
Thank you for suggestions, it really helps! About NTR, I wasn't planning to add it. After I've read comments regarding how people are sensitive about ntr and how they hate it, I added "P.S." note about it on patreon page lol.
 
Last edited:

Eric Storm

Newbie
Oct 25, 2017
20
8
Liked the game so far, but...

Please, PLEASE, give us a textbox background. Make it optional if you want. Better yet, make it adjustable... but playing this game actually gave me a headache because the text was so hard to read. (Still played it to the end of the demo, though, so...)
 

bobdillan

Forum Fanatic
Nov 18, 2016
4,148
9,341
Thank you for suggestions, it really helps! About NTR, I wasn't planning to add it. After I've read comments regarding how people are sensitive about ntr and how they hate it, I added "P.S." note about it on patren page lol.
Heh wise move, makes your target demographic feel calm. And good to know :)

BaasB Might I suggest adding that quote to devnotes? (saves thread from any further discussion on the topic.... hopefully :HideThePain: )

"P.S. There won't be NTR, swinging, cuckold." is the exact quote.
 
  • Like
Reactions: hughmungusboi69

kk123456

New Member
Mar 14, 2019
11
34
Hot models, love the fancy clothing. Will consider supporting if the dev shows consistent schedule.
 

allura404

Active Member
Nov 7, 2019
937
1,182
Our new quality 3d incest game. The renders and characters are very well done. The only thing I don't like is that the mother model is a bit ugly compared to other models. Apart from that, I liked the game very much, I'll wait for the updates with interest. Good luck dev
 
Last edited:
  • Like
Reactions: Phantom of Nerima
Nov 26, 2021
344
787
It seems that it could be a Harem game, that is, it's a demo and the mother and sister see the mc's dick and immediately have thoughts of him (plus they hear him talk in his sleep and mention their names,yeah the sex dream scene....) the aunt and cousin seem interested too (surely they are the ones who introduce themselves as "neighbors"), finally we have a friend of the sister and the father's new wife appears, who had never seen the mc and wets her panties when she sees him :KEK: (it seems she will be the typical slut golddigger)

As for the other stuff, this was the answer the dev gave me on itch
You don't have permission to view the spoiler content. Log in or register now.
Well! Lucky I did a another check on this VN, thanks for posting that
 

buktccbfc71

Engaged Member
Dec 30, 2020
2,700
2,826
Affordable sex from the very first second of the game. :confused: Banality. there is no intrigue in the game.:cautious:DEVELOPER. Engage your audience and you will be successful. and sex from the first frame .. :confused: :rolleyes: :cautious:. it's not interesting already. Where is the intrigue? Available women. These are the ones who are for the money. Women are beautiful. :love: :love: (y) (y) but they undress too fast and try to fuck you.:ROFLMAO::ROFLMAO::ROFLMAO: NOT INTERESTED:cautious::cry:..PS ..... do not be offended. I just said my opinion. Criticism should be present.;);):) A WOMAN SHOULD BE CONQUERED :)
 
Last edited:
3.10 star(s) 10 Votes