diester

Newbie
Apr 28, 2020
59
46
@goodoob, j'ai crier victoire trop vite je n'ai que la moitié de jeu traduis , a tu la traduction pour la derniere version stp ?

@goodoob, I cry victory too quickly I only have half the game translated, do you have the translation for the last version please?
 

diester

Newbie
Apr 28, 2020
59
46
The problem you're seeing is the variable "p" is not defined. But it's defined in script.rpy, right after it asks your name, and right before the bar scene:
Code:
    $ player_name = renpy.input(_("What is your name?"))

    $ p = DynamicCharacter("player_name", color="#4286f4")

    jump barscene1
Look at line 91 in script.rpy and see if you have those lines.

You should report the issue on the French translation thread.

non le fichier script.rpy de la traduction ne va pas plus loin, en fait je pense qu'il n'est pas complet. alors le problème


that's all there is in the file :


Code:
define i = Character(_("Emily"), color="#ff8c7c")

define e = Character(_("Elly"), color="#f441be")

define a = Character(_("Ada"), color="#00ffe5")

define s = Character(_("Sofi"), color="#3abc58")

define j = Character(_("Jenna"), color="#ff7847")

define unknown = Character(_("Inconnu"))

define choose = "Null"

image eileen happy = _("images/1parentalcontrols.jpg")

init -1:

    define d1w = _("Papa")
    define d2w = _("papa")
    define d3w = _("père")
    define d4w = _("Père")
    define d5w = _("Papa")
    define d6w = _("papa")
    define d7w = _("PAPA")
    define d8w = _("fille")
    define d9w = _("enfants")
    define d10w = _("gosses")
    define d11w = _("petite fille")
    define d12w = _("bébé")
    define d13w = _("chéri")
    define d14w = _("chérie")
    define d15w = _("chérie")
    define d16w = _("filles")
    define d17w = _("enfant")
    define d18w = _("fille")
    define d19w = _("famille")
    define d20w = _("pères")
    define d21w = _("Pa-Paa")
    define d22w = _("coeur")
    define m1w = _("Mam")
    define m2w = _("maman")
    define m3w = _("Mère")
    define m4w = _("mère")
    define m5w = _("Maman")
    define m6w = _("maman")
    define m7w = _("parent")
    define m8w = _("tante")
    define m9w = _("Tante")
    define m10w = _("frangin")
    define m11w = _("frère")
    define m12w = _("tatie")
    define m13w = _("FRÈRES")
    define m14w = _("Ma-Man")
    define m15w = _("PAPA")
    define m16w = _("MAMAN")
    define s1w = _("soeur")
    define s2w = _("soeurette")
    define s3w = _("soeurs")
    define s4w = _("inceste")

init python:
    persistent.ihslrunlock = True


define bartender = Character(_("Barman"), color="#9332d3")

define barista = Character(_("Serveuse"), color="#c5ff3f")

define scarce = Character(_("Todd"), color="#432cd6")

define brett = Character(_("Brett"), color="#a2ff68")

define frank = Character(_("Frank"), color="#ffff38")

define joel = Character(_("Joel"), color="#dded55")

define mcop = Character(_("Officier de Police"), color="#424bf4")

define fcop = Character(_("Officier de police"), color="#9f44f4")

define er = Character(_("Eric"), color="#55a875")

label start:

    jump barscene1
 

goobdoob

Conversation Conqueror
Modder
Respected User
Dec 17, 2017
7,426
9,685
@goodoob, j'ai crier victoire trop vite je n'ai que la moitié de jeu traduis , a tu la traduction pour la derniere version stp ?

@goodoob, I cry victory too quickly I only have half the game translated, do you have the translation for the last version please?
I don't have any translation, just the base game.

non le fichier script.rpy de la traduction ne va pas plus loin, en fait je pense qu'il n'est pas complet. alors le problème


that's all there is in the file :


Code:
define i = Character(_("Emily"), color="#ff8c7c")

define e = Character(_("Elly"), color="#f441be")

define a = Character(_("Ada"), color="#00ffe5")

define s = Character(_("Sofi"), color="#3abc58")

define j = Character(_("Jenna"), color="#ff7847")

define unknown = Character(_("Inconnu"))

define choose = "Null"

image eileen happy = _("images/1parentalcontrols.jpg")

init -1:

    define d1w = _("Papa")
    define d2w = _("papa")
    define d3w = _("père")
    define d4w = _("Père")
    define d5w = _("Papa")
    define d6w = _("papa")
    define d7w = _("PAPA")
    define d8w = _("fille")
    define d9w = _("enfants")
    define d10w = _("gosses")
    define d11w = _("petite fille")
    define d12w = _("bébé")
    define d13w = _("chéri")
    define d14w = _("chérie")
    define d15w = _("chérie")
    define d16w = _("filles")
    define d17w = _("enfant")
    define d18w = _("fille")
    define d19w = _("famille")
    define d20w = _("pères")
    define d21w = _("Pa-Paa")
    define d22w = _("coeur")
    define m1w = _("Mam")
    define m2w = _("maman")
    define m3w = _("Mère")
    define m4w = _("mère")
    define m5w = _("Maman")
    define m6w = _("maman")
    define m7w = _("parent")
    define m8w = _("tante")
    define m9w = _("Tante")
    define m10w = _("frangin")
    define m11w = _("frère")
    define m12w = _("tatie")
    define m13w = _("FRÈRES")
    define m14w = _("Ma-Man")
    define m15w = _("PAPA")
    define m16w = _("MAMAN")
    define s1w = _("soeur")
    define s2w = _("soeurette")
    define s3w = _("soeurs")
    define s4w = _("inceste")

init python:
    persistent.ihslrunlock = True


define bartender = Character(_("Barman"), color="#9332d3")

define barista = Character(_("Serveuse"), color="#c5ff3f")

define scarce = Character(_("Todd"), color="#432cd6")

define brett = Character(_("Brett"), color="#a2ff68")

define frank = Character(_("Frank"), color="#ffff38")

define joel = Character(_("Joel"), color="#dded55")

define mcop = Character(_("Officier de Police"), color="#424bf4")

define fcop = Character(_("Officier de police"), color="#9f44f4")

define er = Character(_("Eric"), color="#55a875")

label start:

    jump barscene1
Looks like the translator left some stuff out when he did the translation. The game should ask for your name, and use that when talking.
 

jstreet

Engaged Member
Jan 7, 2018
3,190
4,760
Anybody else feel like the guy writing for this game is different then before? When game first started the dialogue was realistic and good storytelling. now dialogue seems like its written by a 12 year old boy
The writing quality has dropped a bit since the story finished the other routes (all but the mysterious 5th route) and is trying to finish the harem route. Yes, some of the harem plot points seem forced and rushed but I take it as the writer is getting tired and wants to start a new story. Compared to other stories with a harem routes this story feels somewhat realistic since it's not based on superpowers or supernatural items.
 

Rishwan

Newbie
Mar 2, 2020
15
3
Android apk has 547 mb 0.17 version
Version 0.16 size was 705 mb ??? I think there is a problem ... Maybe ?? can i get a link
of a patched android version 0.17 ...
 

mazqaz

Well-Known Member
Feb 19, 2018
1,318
2,193
Does this have ay sort of gameplay I see the combat tag so was thinking it might have some fun mechanics? Or is it just a straight up VN where I just have to press 'space' till an arbitrary decision pops up.
 

Anon4321

Conversation Conqueror
Jun 24, 2017
6,730
5,286
Does this have ay sort of gameplay I see the combat tag so was thinking it might have some fun mechanics? Or is it just a straight up VN where I just have to press 'space' till an arbitrary decision pops up.
Yeah, it is purely a VN game, don't expect any actual combat gameplay. if you make a mistake you can simply rollback and pick the right one.
 

Assassini

Member
Oct 17, 2018
122
565
Man, this game is HOT AS HELL. I'm not normally into incest stuff and I tend to be a bit uncertain with Loli content, but godamn this just hits all the right notes.

I might even actually replay it because I made the poor decision of playing on a Mac, so literally all the incest/Ada content is censored and that became a real pain. I think I actually missed out a lot because of it. So may try again on a PC (because I'm assuming the mod won't work on Mac).

Before that, however, I wanted to ask something about the endings:

You don't have permission to view the spoiler content. Log in or register now.
 

goobdoob

Conversation Conqueror
Modder
Respected User
Dec 17, 2017
7,426
9,685
Man, this game is HOT AS HELL. I'm not normally into incest stuff and I tend to be a bit uncertain with Loli content, but godamn this just hits all the right notes.

I might even actually replay it because I made the poor decision of playing on a Mac, so literally all the incest/Ada content is censored and that became a real pain. I think I actually missed out a lot because of it. So may try again on a PC (because I'm assuming the mod won't work on Mac).

Before that, however, I wanted to ask something about the endings:

You don't have permission to view the spoiler content. Log in or register now.
I play on a Mac, and I have everything uncensored. You just need to put patch.renpy in the right place.
Right click on the app, select "Show Package Contents". Then go to Contents/Resources/autorun/game. Put the patch there.

You don't have permission to view the spoiler content. Log in or register now.
 

diester

Newbie
Apr 28, 2020
59
46
Sorry to disturb you again but I have a little problem, I wanted to discover this game fully so translate it into my language. So far so good. except that with the patch I have d7b.rpy files and when I translate it the game does not take it into account (obviously I use Ren'PY)

in fact the game calls the original d7.rpy and d7b.rpy file
I don't know how to make it call the file ParentalLove-version0.17-pc \ game \ tl \ French\d7.rpy and d7b.rpy

however it works with the other files until d6.rpy ....... who can help me so that the game calls the right file?
because I'm stuck in translation
 
Last edited:

jstreet

Engaged Member
Jan 7, 2018
3,190
4,760
When will the new update be out, please?
Use the link that I'm Not Thea Lundgen! put in his post or go to the op page and use the website link to see update on the next update. From the look of things Luxee is taking his time with each scene. in the past Luxee could get about 21 scenes done in about 19 days (depending on the size of the scene).
 
4.20 star(s) 215 Votes