2.90 star(s) 79 Votes

Draxabc2

Newbie
Mar 10, 2018
60
87
206
Don't sabotage the bathroom at the start(Do it at the end). And don't visit hospital at the start. It glitches the events. First finish the events at house, then hospital, then bathroom tweak.
 
  • Like
Reactions: Jimwalrus

media18923

Newbie
Apr 17, 2023
28
33
123
I gave this game another chance hoping it wouldn't have so many misplaced hits, incorrect locations, incorrect times, etc
And it's still the same bugged game as always
 

jillybeans

Member
Apr 22, 2018
322
180
189
Hope this game is clean, one virus scare made me paranoid of every future update of games that has been targeted before -.- ill dl but ill wait a few weeks before i hear any news whether it is safe or not
 

phdusa1

Active Member
Aug 18, 2018
730
2,036
384
Unofficial Android port for My Early Life [CeLaVie Group] with Cheat mod from MrTM

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

Episode 1-11.04 more Compressed Android port with Cheats
| |
(1.25 GB)

Episode 12-15 Android port with Cheats

(1 GB)
For other host links please join my discord:

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

You don't have permission to view the spoiler content. Log in or register now.
Like my ports? you can tip and support me here:

*This unofficial port/mod is not released by developer, download at your own risk.​
 
Last edited:

Celaviegroup

Well-Known Member
Game Developer
Aug 27, 2018
1,321
3,426
447
Hope this game is clean, one virus scare made me paranoid of every future update of games that has been targeted before -.- ill dl but ill wait a few weeks before i hear any news whether it is safe or not
As long as you download the game from my site or offical links here - it should not be a problem. Never download from any pirates - if you do it - you'll know that very soon
 

Celaviegroup

Well-Known Member
Game Developer
Aug 27, 2018
1,321
3,426
447
If only it worked in-game, so you wouldn't get stuck all the time
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.
 

jillybeans

Member
Apr 22, 2018
322
180
189
As long as you download the game from my site or offical links here - it should not be a problem. Never download from any pirates - if you do it - you'll know that very soon
But the infected uploads were all from here and uploaded, thats where my paranoia stems from now, since the site couldnt catch them until later. T.T but if you are the one uploading it then that is fine, but you can never know when some bad actors or hacked accounts upload them -.- since i only dl from the front page
 

Minnimix

Member
Jun 18, 2020
221
288
186

Celaviegroup

Well-Known Member
Game Developer
Aug 27, 2018
1,321
3,426
447
But the infected uploads were all from here and uploaded, thats where my paranoia stems from now, since the site couldnt catch them until later. T.T but if you are the one uploading it then that is fine, but you can never know when some bad actors or hacked accounts upload them -.- since i only dl from the front page
I always recommend to download the public version from my Patreon site only as this one is from me of course and that will always be the latest version. Any other version might have been infected as we previously have seen.
 
  • Like
Reactions: jillybeans

Celaviegroup

Well-Known Member
Game Developer
Aug 27, 2018
1,321
3,426
447
If only it worked in-game, so you wouldn't get stuck all the time
You should not get stuck all the time - of course in case you use cheats I can't guarantee.
Just play the game and if you can't proceed more - click on the question mark and you'll see where you can progress. If there is no hint, try to follow the girls around.
 

Celaviegroup

Well-Known Member
Game Developer
Aug 27, 2018
1,321
3,426
447
For anyone playing an episode in 1- 11 - make sure to download the latest version 11.04 from my Patreon site

Wish you happy playing
 
  • Like
Reactions: guardianfather

BLhonTCflsKv

New Member
May 10, 2019
6
8
67
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
 
2.90 star(s) 79 Votes