Ive-11

Well-Known Member
Sep 10, 2019
1,407
508
this update make a multiple endings? not just 3 but also more 5 routh? im confuse, cuz also the tag not saying multiple end,,
 

GrammerCop

Well-Known Member
Donor
Mar 15, 2020
1,880
1,836

Tacito

Forum Fanatic
Jul 15, 2017
5,674
48,823
might have to start a new game if you used lain's mod before or didn't
Config developer is enabled in game ... so there is the check on duplicate labels , new rpy and rpy in archive.rpa
Normally you exit and rerun and the problem is solved, or ...
config.developer = False

Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.

The label barscene1 is defined twice, at
  File "scripts/d1.rpyc", line 12 and
  File "game/scripts/d1.rpy", line 12.

The label _call_check_for_completionist_achievement_9 is defined twice, at
  File "scripts/d1.rpyc", line 17 and
  File "game/scripts/d1.rpy", line 17.

The label _call_check_for_completionist_achievement_10 is defined twice, at
  File "scripts/d1.rpyc", line 38 and
  File "game/scripts/d1.rpy", line 38.

  ..... and so on
 
Last edited:

Trikus

Well-Known Member
May 31, 2020
1,153
2,262
I'm taking a crash course in modding this game. In general I like the Harem ending, but there are a few things that happen in the story that I didn't like all that much. One example, Ada's first time being a drunken fumble, when there is great scene on the Forbidden path. So, I'm kind of making a "Perfect" Harem ending. I just finished my first alteration and Ren'py seems fairly straight forward to program.
 

Brovalon

Active Member
Jan 11, 2020
640
724
I'm taking a crash course in modding this game. In general I like the Harem ending, but there are a few things that happen in the story that I didn't like all that much. One example, Ada's first time being a drunken fumble, when there is great scene on the Forbidden path. So, I'm kind of making a "Perfect" Harem ending. I just finished my first alteration and Ren'py seems fairly straight forward to program.
Honestly, that's a good idea. Ada deserves better, or at the very least, we deserve to have seen the first time in more than a blurry flashback.
 

list101

Member
Mar 18, 2019
448
624
Are you sure? that mod explicitly says "no incest" while the incest patch in op says it restores all content.
I am very sure why dont you try for yourself
this mod is NO incest
where the patch
1. doesn't restore Sofi handjob in the coffee-shop
2. change all relations to mc as incest
 

ImmortalNight

Active Member
Jul 4, 2020
684
968
this update make a multiple endings? not just 3 but also more 5 routh? im confuse, cuz also the tag not saying multiple end,,
Yes there are now 5 total endings. Good husband, Ada, Elly, Harem, and sister. Technically 6 as two versions of the harem one.
 

Hermit76

Well-Known Member
Apr 15, 2018
1,614
1,573
Still nobody out there who knows for sure how the "Completionist" achievement can be obtained? I have all other achievements and all gallery scenes unlocked. So I guess that should qualify for being a completionist. But obviously it doesn't.:unsure:
 

Tacito

Forum Fanatic
Jul 15, 2017
5,674
48,823
Still nobody out there who knows for sure how the "Completionist" achievement can be obtained? I have all other achievements and all gallery scenes unlocked. So I guess that should qualify for being a completionist. But obviously it doesn't.:unsure:
This is the check , it is called every time you unlock an achievement :

Python:
label check_for_completionist_achievement:

    if persistent.accompletionist != 1 and persistent.achappyend == 1 and persistent.acdaddyf == 1 and persistent.acrickshaw == 1 and persistent.acupatch == 1 and persistent.acdmd == 1 and persistent.acmoneyjoke == 1 and persistent.acallends == 1 and persistent.acspecialf == 1 and persistent.acendone == 1 and persistent.acendoneb == 1:
        pause
        $ persistent.accompletionist = 1
        $ renpy.notify("Achievement: Completionist")
    # Doesn't check for: "acendtwo, acendthree, acendfour, acendfive" achievements because it checks for 'completed all ends' achievement instead, which is equivalent.

    return
The only way to check is to see your persistent file (save folder)... to verify if something is wrong
 
4.20 star(s) 221 Votes