Ren'Py My Early Life [Ep.1-15.00] [CeLaVie Group]

3.00 star(s) 48 Votes

BLhonTCflsKv

New Member
May 10, 2019
4
5
Hey everyone, hopefully this helps, it's an advanced method for those who are familiar with python to get more info about the episode's events..


Between Episodes 5-8 I had to skip the last event,
now on Episode 9 I'm stuck on 59/76, Having 5 events, I wanted to know more about the events,
I was able to do that via Renpy console (needs to be enabled via modification)

As documented, the game uses `EVENTS` as the list of event objects
each object has these list of attributes / methods:
'Auto', 'Block', 'DayOfWeek', 'Desc', 'Done', 'EventCheck', 'Hour', 'IsAvailable', 'Location', 'Minutes', 'Progress', 'SetAvailable', 'SetDone', 'SetUnAvailable'

and using python list comprehension I managed to find the exact details of my event, for example,
I was stuck on the even 8:00 in Bob's room, but actually that event is only set to trigger at 9:30 !!!

with the console I was able to find out each event's actual triggers and not the dev's description which can be wrong..

the list comprehension I used is `myevts=[x for x in EVENTS if x.IsAvailable and not x.Done]`
That creates a python list that mimic the question mark, but now for each event we can dig into for more info

Then for reading it: `[x.__dict__ for x in myevts]`
Screenshot: 1724776432661.png
 

StyleHG

Member
Mar 12, 2021
468
233
Hi thx for the nice game
i have 2 issue
first i stuck by 84/86 events no more open to trigger
second i have no sound in the game

the last quest movie with sisters repeat from alone

can help?
 

MrBurnie

Newbie
Mar 4, 2022
65
38
Hi thx for the nice game
i have 2 issue
first i stuck by 84/86 events no more open to trigger
second i have no sound in the game

the last quest movie with sisters repeat from alone

can help?
Read above, have been explained numerous times.
 

gopherino

Member
Dec 23, 2021
111
100
F..u.. any save file?
Sorry, but I wasn't thinking clearly enough to hit SAVE when I stumbled on a bug. I didn't even know this would be useful. My save was done after the real end of the game, after all my CRTL-O work. CLVG do you know you can get a END OF EPISODE message after 84 of 86 events are done? Got to the real end anyway. Thanks, graphics are still great as always.
 

gopherino

Member
Dec 23, 2021
111
100
Sorry, but I wasn't thinking clearly enough to hit SAVE when I stumbled on a bug. I didn't even know this would be useful. My save was done after the real end of the game, after all my CRTL-O work. CLVG do you know you can get a END OF EPISODE message after 84 of 86 events are done? Got to the real end anyway. Thanks, graphics are still great as always.
Just a suggestion, but I completed events from the start by scanning through all rooms, even unoccupied ones. Got some events hit that way. Perhaps this is what leads to the cul-de-sac.
 

dandy1

Newbie
May 6, 2017
19
32
I guess you have played episode 12?
I have done my utmost to implement hints so the game can be played by dummies too.
I'm aware that this hints system is slowly implemented and not have been 100 % perfect in the beginning and still needs lot of improvements in the first episodes. For the last episodes - this problem should more or less been solved.
If you use the hints so you start to play in a way so follow the girls around and if you have played for 1 day with no progress you can have a look at the hints - choose one or 2 of these and play again. Soon there will be few hints left - follow them again etc.
This way you'll enjoy the game much more and don't spend time to follow a guideline that requires that you click exactly as you did.
Not sure what people are complaining about. I didn't have any problems getting to the end, except it happened too quickly , I wanted more, oh well waiting for next update. Great job Celavie
 

tmv

Member
May 31, 2017
271
54
I updated bob room cheat for Episode 1-11.03
Also Updated for Episode 12

added code to help to lower the awful grind in the game - adds money, study, mood and arousal
Just visit bobs room to get the bonus's

Code:
    $ bob_money += 300
    $ BobStudyHours = 15
    $ LynnObj.GrowMood(3)
    $ LinaObj.GrowMood(3)
    $ EveObj.GrowMood(3)
    $ ArielleObj.GrowMood(3)
    $ LynnObj.GrowArousal(10)
    $ LinaObj.GrowArousal(10)
    $ EveObj.GrowArousal(10)
    $ ArielleObj.GrowArousal(10)
Episode 1-11.03
place bob_room.rpy in the game folder
Episode 12.04
place bobroom.rpy in the game folder

jonquilnatrix has another cheat that uses the diary (Ep1-11). Do not use both mods at the same time, only one or the other.

https://f95zone.to/threads/my-early-life-ep-10-celavie-group.166790/post-13435978
Hi, for some reason the money increase doesn't work for me in ep12. I started a new game for it, still no succes
Any suggestions?
 

Litvan

Member
Aug 6, 2016
217
122
and if you make the noob mistake and do the overwite everything to update you get a failed launch and tons of errors in the traceback lol
And exactly where did I say that I had any of said "problems" you mention?

When I referenced to the hardcoded "bob" it's where the dev has written the whole dialogue with "bob" in the txt instead of eg "hey (playername)", he has just done a "hey bob" instead.
 
Jun 30, 2020
315
831
Got myself unstuck at 84/86. Turned out that I needed to go to the pool a couple times at 1500 to finish a sequence before it unlocked girls room 2200.

Hope that helps somebody out there.
 
  • Like
Reactions: ImNoone

Ksams42

New Member
Jun 14, 2024
5
3
love Episodes 1-11 understand reason splitting Esp 12 on its own got use to having girls' stats at top instead of side and having diary to open as well but still loved all of it... Waiting on next Episodes Good Job
 
  • Red Heart
Reactions: Celaviegroup
3.00 star(s) 48 Votes