STNeish

Member
Mar 20, 2020
275
399
You can set manually each scene's timeout during they dialog, or just skipping to run clicking on emergency. Also you can tempoary disable mods like incest if you wanna avoid that contents for a time, or try play without mods using only the necessary ones (vanilla).
But remember this game's scenes mostly (around 80-90%) focus on erotic content, with mods this ratio could be stronger. So it is clearly not a dating game now.
Also, you can increase the difficulty. Higher difficulty means actions will have less effect, meaning it would take more time to achieve a given result.
 

Rogue Reaper

Newbie
Aug 7, 2021
28
26
I'm messing with the Adoption file... Since Baby, 9 years old and 18 years old were options.. I kind of wanted 13 to be an option for roleplay, even though they would still get force aged up..

First options edit worked I get the 4 options correctly..
Code:
Endif
If !Exit
    "It's a lot of paperwork to fill but in the end my application was accepted."
    Parent = generatePersonTemporary()
    While !Parent.isRace(human)
        Parent = generatePersonTemporary()
    Endwhile
    Actor = Parent.generateRelativeMatchRace()
    0:: !Vampire:: "Should I adopt a baby? age 0"
    1:: "Should I adopt a child? age 9"
    2:: "Should I adopt a younger teenager? age 13"
    3:: "Should I adopt an older teenager? age 18"
But can't get the second option to go through
Code:
    If 0
        "I'm in luck. The centre currently has one newborn available for adoption"
        Actor:age => 0
        Actor:rapportwithplayer => Random(50, 100)
    Elseif 1
        "I'm in luck. The centre currently has child in need of a home"
        Actor:age => 9
        Actor:rapportwithplayer => Random(0, 25)
    Elseif 2
        "I'm in luck. The centre currently has a younger teenager in need of a home"
        Actor:age => 13
        Actor:rapportwithplayer => Random(0, 25)
    Else
        "I'm in luck. The centre currently has an older teenager in need of a permanent home"
        Actor:age => 18
        Actor:rapportwithplayer => Random(-50, 0)
Dialogue for options 2 and 3 go to the "older teenager" dialogue, not sure what the issue is.. Not much experience with coding..
 

Icebird

Member
Sep 22, 2017
396
284
I'm messing with the Adoption file... Since Baby, 9 years old and 18 years old were options.. I kind of wanted 13 to be an option for roleplay, even though they would still get force aged up..

First options edit worked I get the 4 options correctly..

But can't get the second option to go through

Dialogue for options 2 and 3 go to the "older teenager" dialogue, not sure what the issue is.. Not much experience with coding..
If it's a question, you cannot use characters under 18 age, it's restricted in the source code, so the npc will be invalid and invisible. And I don't see the Endif cmd for closing your code (it's jumped over the top line somehow?). All other line seems ok.
 
  • Like
Reactions: Rogue Reaper

Rogue Reaper

Newbie
Aug 7, 2021
28
26
If it's a question, you cannot use characters under 18 age, it's restricted in the source code, so the npc will be invalid and invisible. And I don't see the Endif cmd for closing your code (it's jumped over the top line somehow?). All other line seems ok.
Right I know they will be invisible. , this code is in the game files in the adoption scene file, I only added the lines to adopt 13yr, but in testing the "I'm in luck. The centre currently has a younger teenager in need of a home" line gets skipped in dialogue and shows the older teenager dialogue instead.. Not that big of a thing, just not sure why it's skipping that line, since the 0 and 9yr dialogue still work with the edit.
 

Icebird

Member
Sep 22, 2017
396
284
Right I know they will be invisible. , this code is in the game files in the adoption scene file, I only added the lines to adopt 13yr, but in testing the "I'm in luck. The centre currently has a younger teenager in need of a home" line gets skipped in dialogue and shows the older teenager dialogue instead.. Not that big of a thing, just not sure why it's skipping that line, since the 0 and 9yr dialogue still work with the edit.
I think because the 'If' should be closed with 'EndIf' at the end of choices. Use notepad++ with the shipped syntax highlighter (or what I posted not long time ago) to be sure your syntax is correct.

If (start choices, should be one in a column until it closed by 'Endif')
If (second 'If' breaks the process)
Elseif (any alternative on sort of priority, can be multiple, count as 'Else' if nothing defined)
Else (last, mostly exeptions, can be one)
Else (second 'Else' will be ignored)
Endif (close choices, should be one in a column, closing the previous 'If')

Leaving open without 'Endif' the process go to the next executable line (until the next Endif or the end of the scene).

p.s.: Do not use Tabs, use 4 spaces instead.
If (main)
1234
If (sub)
12345678
If (subsub)
12345678
Endif (closing the subsub)
1234
Endif (closing the sub)
Endif (closing the main)

The numbers are the required spaces to separate columns.
 
Last edited:
  • Like
Reactions: Rogue Reaper

Rogue Reaper

Newbie
Aug 7, 2021
28
26
I think because the 'If' should be closed with 'EndIf' at the end of choices. Use notepad++ with the shipped syntax highlighter to be sure your syntax is correct.

If (start choices)
If (second if breaks the process)
Elseif (any alternative on sort of priority, can be multiple)
Else (last, mostly exeptions, can be one)
Else (second 'Else' will be ignored)
Endif (close choices)

Leaving open without 'Endif' the process go to the next executable line (until the next Endif or the end of the scene).

p.s.: Do not use Tabs, use 4 spaces instead.
Oh, it's probably the Tab then.. lol

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

Cause the Endif is there, just didn't post the full scene code, my bad. lol
 

Icebird

Member
Sep 22, 2017
396
284
Oh, it's probably the Tab then.. lol

Cause the Endif is there, just didn't post the full scene code, my bad. lol
Tip: Use the randomizehair and randomizeface at last step of npc creation. Because changing gender overwrites hair, changing face depends on ethnicity and age, so this should determined before randomization. The proper order is: gender, age, ethnicity, bodytype, other visual (bodyparts) or randomizesexy, randomizeface, randomizehair, clothing, other properties.
 
Last edited:
  • Like
Reactions: Rogue Reaper
Jun 3, 2023
39
14
okay so i tried to install mods in this game and not only did it not work but the entire thing is glitched so i can't see my options are do anything nor can i see the mods because they all now just so a blank page

can anybody help
 

Icebird

Member
Sep 22, 2017
396
284
okay so i tried to install mods in this game and not only did it not work but the entire thing is glitched so i can't see my options are do anything nor can i see the mods because they all now just so a blank page

can anybody help
All mod should be extracted under the following structure:
yourdrive:\yourpathtothegame\yourlifeplayrootfolder\LifePlay\Content\Modules\mod'snamefolder

Example:
C:\Games\Lifeplay_5_x\LifePlay\Content\Modules\nn_PornEmpire

In optimal case you don't need overwrite any file.
If you misplaced the mods (placed somewhere else by mistake) try delete the whole lifeplay root folder and reinstall again and properly add the mods into the described structure above. But try run the game after clean install without add any mod and start a game press Esc > Settings > try to lower the graphic settings, especially the 'Post Process Quality'. Later if everything is fine you can tune this values depending on your hardware capability. (Also, make sure you don't abuse the 'Randomize Unknown Buildings' in the Select City menu and set too high percentages.)
 
Last edited:
  • Like
Reactions: Lifeplayer and R0y

Rogue Reaper

Newbie
Aug 7, 2021
28
26
Tip: Use the randomizehair and randomizeface at last step of npc creation. Because changing gender overwrites hair, changing face depends on ethnicity and age, so this should determined before randomization. The proper order is: gender, age, ethnicity, bodytype, other visual (bodyparts) or randomizesexy, randomizeface, randomizehair, clothing, other properties.
Weird, cause that's the base games code. :ROFLMAO:

And Tab was the issue, got it working.
 

ianskman

Member
Mar 12, 2021
213
277
is there a mod where I can go to a sex show, and just watch to random npc have sex without taking part. or choose the npc that are part of the show based on description.
 

Chameleo

Member
May 20, 2017
399
403
Can I get any additional sex animations? I remember there used to be more. For example when I want to go for the sleep sex, the animations are just rough fucking, no sleep sex animations.
 

ianskman

Member
Mar 12, 2021
213
277
Can I get any additional sex animations? I remember there used to be more. For example when I want to go for the sleep sex, the animations are just rough fucking, no sleep sex animations.
Can I get any additional sex animations? I remember there used to be more. For example when I want to go for the sleep sex, the animations are just rough fucking, no sleep sex animations.
https://f95zone.to/threads/lifeplay-v2023-04-stable-vinfamy.11321/post-13524
mod has an option called sneaky with more positions
 

Rogue Reaper

Newbie
Aug 7, 2021
28
26
Anyone know where the UI setting for family relationship is? The one in contacts that switches the role of the character.. I'm wanting to change the "step" child role assigned to the adopted children.. And add an "adopted" child role, since being step is through marriage not adoption..
 

Icebird

Member
Sep 22, 2017
396
284
Anyone know where the UI setting for family relationship is? The one in contacts that switches the role of the character.. I'm wanting to change the "step" child role assigned to the adopted children.. And add an "adopted" child role, since being step is through marriage not adoption..
With NickNo's NPC Manager you can set almost any relationship.
 
  • Like
Reactions: Rogue Reaper

larsV

Member
Jan 13, 2018
203
70
Why is the link sending me to a completely different game?
the incest mod will give you bed scenes with family and the roommate mod from ravenger (ravenger scenes) will also give you bed scenes (download from the first page under community downloads) open the download,go to vinbase,scenes you find a folder called roommate put that in the vin-base folder and start a save game,will work without having to start a new save)
 
3.30 star(s) 118 Votes