Laurifer

New Member
Jul 9, 2020
5
0
156
I'm playing on a pretty old save and seem to be stuck? Android is at relationship level 20 but apparently that event has been removed from the game. Is there any kind of fix for this or am I going to have to start a new game?
 

ZenoMod

Well-Known Member
Nov 12, 2022
1,643
2,063
386
I'm playing on a pretty old save and seem to be stuck? Android is at relationship level 20 but apparently that event has been removed from the game. Is there any kind of fix for this or am I going to have to start a new game?
I think there's something posted God knows where.

Can you access the console and set that variable by hand?
 

Mxiio

Member
Jul 30, 2024
446
403
132
Cancel your wake-up call while you build stuff :)
I'll expand a bit on my previous answer since it didn't resolve your issue :)
Anything that resolves in the morning should be avoided if you want to make sure to succeed the builds. That includes things like mail orders, plants that are growing, sleeping with someone and/or having a wake-up service.
I'm not saying that all of these cause issues independently or in concert, but it'll solve your problem for sure :p

I used to work as an admin for a major company, with tons of off-site servers. Golden rule when you don't know the exact problem. Fix it all, all at once.
 

Allmoido

New Member
Jul 26, 2018
12
24
178
I haven't played in probably almost a year now, how much new content have we had through 2024 or late 2023?

is it worth replaying now or just coming back to it again next year :LOL:
About 20 minutes or so. It'll be worth replaying in a few years.
 

BarkMan

New Member
Jul 15, 2024
7
21
38
Sleep alone too.
I'm not saying that all of these cause issues independently or in concert, but it'll solve your problem for sure :p
I was sleeping alone, and there were no events, other than the completion of the upgrade.

The problem seems to be a missing null check on line 88 of GardenPlot.rpy.

I changed this
Code:
if not plot['crop'].get('perennial') or remove_perennial:
to this
Code:
if (not plot['crop'] is None and not plot['crop'].get('perennial')) or remove_perennial:
to eliminate the error.

If anyone else gets this error and would like to avoid it, unzip the attached file and drop the "game" folder into your HaremHotel folder. If you do, you'll probably want to delete GardenPlot.rpy before you install any future game updates.
 

keksaurus

New Member
Jun 10, 2020
2
1
94
The game is very good so far, my only gripes are how many clicks it takes to get to the garden and how slow it is to grind for the lustful trait. Can't wait to see what's in the next update!
 
  • Like
Reactions: jarsc

Engulfed

Newbie
Sep 7, 2024
49
190
122
For anyone using the Walkthrough mod who wants Quicksave and Quickload to come back:

1) Go to the game/mod folder and open the file Lain_Overrides.rpy in notepad or some other text editor. For safety you can make a copy of this file first and put it somewhere outside the game folders (like your downloads or desktop) as a backup. Don't save the copy in the mod folder or it'll cause issues.

2) In notepad search for the word "save". It'll take you to this section

pre-edit.png

3) Between the "Save" and "Prefs" lines insert the below lines. Make sure the new lines have the same spaces at the front so they line up with the others

textbutton _("Q.Save") action QuickSave()
textbutton _("Q.Load") action QuickLoad()


4) It should now look like this

post edit.png

5) Save and exit the file.

You should see Q.Save and Q.Load back in the quick menu.

Screenshot 2024-11-13 133843.png
 
Last edited:

nofear4095

New Member
Jan 22, 2022
7
2
94
Could anyone give me a the save game data from 18.0? For some reason all of the save game data doesn't load. I'm using joiplay for android.
 

Slavytuch

New Member
Apr 18, 2020
8
5
83
It seems that girls that a I can sleep with have gone reset after update - only Lin and Android available. Does anyone have that issue?
 

DigDug69

Engaged Member
Jun 29, 2019
2,766
5,542
712
For anyone using the Walkthrough mod who wants Quicksave and Quickload to come back:

1) Go to the game/mod folder and open the file Lain_Overrides.rpy in notepad or some other text editor. For safety you can make a copy of this file first and put it somewhere outside the game folders (like your downloads or desktop) as a backup. Don't save the copy in the mod folder or it'll cause issues.

2) In notepad search for the word "save". It'll take you to this section

View attachment 4227803

3) Between the "Save" and "Prefs" lines insert the below lines. Make sure the new lines have the same spaces at the front so they line up with the others

textbutton _("Q.Save") action QuickSave()
textbutton _("Q.Load") action QuickLoad()


4) It should now look like this

View attachment 4227804

5) Save and exit the file.

You should see Q.Save and Q.Load back in the quick menu.

View attachment 4227784
Hopefully the reason that it was disabled had nothing to do with what Lain had to do fix the save file issue.
So that save files made when using the mod would no longer brick the game without the mod installed.
People trying to play newer releases, with save files created with the mod installed, would cause the game to crash 100% of the time.
Any time that people tried to play using those save files, without the mod installed in future releases of the game, it would crash, and people would be forced to look for older save files that were not made with the mod installed.
 
  • Thinking Face
Reactions: TheDevian
4.60 star(s) 500 Votes