AnonF21

Newbie
Aug 6, 2018
95
120
Visit this page:
Thanks

Got a few mod suggestions
Put clothes into categories (example having all shirts into one section and skirts in another)
Like 12loop3 said, have the penis be measure in inches (1 to 12 inches)
A option to move in into another npc or spouse home
 

larsV

Member
Jan 13, 2018
203
70
lewdpatch is down and has been down since yesterday if someone would give the beast/no-con/incest and what ever other modules there are would be nice
if you download the update or the whole game from the first page from this thread,you DON`T need the patch!!!
 

larsV

Member
Jan 13, 2018
203
70
I can't access the site to get the patch for incest and all... Can someone share it for me ?
pls read,if you go to the first page of the thread,and you download the update or you download the whole game...you don`t need the patch,the patch is only for when you download the game/update from the patron website
 

larsV

Member
Jan 13, 2018
203
70
There is still the bug curtain in the bathroom.
go to the first page of this thread go to comunity made mods then go to custom bedroom/buildings presets and download updated rooms w/o curtains, put it in the modules folder and problem solved,remember every time you update the game you need to put it in the module folder.
 

creangel

Newbie
Dec 10, 2020
75
36
yo, anyone got any beginner tips, like what should I do and how should I spec my character out for first time playing?
Well .. I cheat edit my stealth high .. so I can peek when cool scenes happen successfully without working for it.

And I add a few family members, change their appearance and dominance, with high deviance/perversion .. I feel that gives me more fun scenes.
 

Shynasha

Member
Mar 19, 2019
342
264
go to the first page of this thread go to comunity made mods then go to custom bedroom/buildings presets and download updated rooms w/o curtains, put it in the modules folder and problem solved,remember every time you update the game you need to put it in the module folder.
I kind of just didn't notice, and actually noticed after posting about it, but thanks anyways
 

Ravenger6660

Active Member
Sep 14, 2017
852
996
https://f95zone.to/threads/lifeplay-v4-17-vinfamy.11321/post-4138623

adoption{updated so you can Choose race & age.}

Code:
WHAT: none
WHERE: none
WHEN: 0-24
WHO: none
OTHER:

SceneStart()
Exit = false
"Where should I adopt?"
0:: "Africa? -Black-"
1:: "India? -South Asian-"
2:: "Sudan? -Arab-"
3:: "Bazil? -Latin-"
4:: "China? -East Asian-"
5:: "Canada? -White-"
6:: "Never mind"

If 0
    setRaceGenerated(black)
Elseif 1
    setRaceGenerated(indian)  
Elseif 2
    setRaceGenerated(arab)      
Elseif 3
    setRaceGenerated(latin)  
Elseif 4
    setRaceGenerated(asian)  
Elseif 5
    setRaceGenerated(white)
Else
    Exit = True
Endif
If !Exit
    "It's a lot of paperwork to fill but in the end my application was accepted."
    Parent = generatePersonTemporary()
    Actor = Parent.generateRelativeMatchRace()
    Actor.setRelativeType(Child)
    Actor2 = getSpecific(Dating)
    If Actor2.isValid() && Actor2.ismarried()
        addNpcRelationship(ParentChild, Actor2, Actor)
    Endif
       
    0:: "Should I adopt a baby? age 0"
    1:: "Should I adopt a child? age 9"
    2:: "Should I adopt a teenager? age 18"
   
    If 0
        "I'm in luck. The centre currently has one newborn available for adoption"
        Actor:age => 0
        Actor.randomizeFace()
        Actor.randomizeHairs()
        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.randomizeFace()
        Actor.randomizeHairs()
        Actor:rapportwithplayer => Random(0, 25)
    Else
        "I'm in luck. The centre currently has teenager in need of a permanent home"
        Actor:age => 18
        Actor.randomizeFace()
        Actor.randomizeHairs()
        Actor:rapportwithplayer => Random(-50, 0)
    Endif
    "It's a <Actor.boy_or_girl>! What should I name my <Actor.son_or_daughter>?"
    Actor.enterFirstName()
    Player:children += 1
Endif  
SceneEnd()
 
  • Like
Reactions: jinzom

Tarrang

Member
Oct 13, 2021
306
331
Russia might be more appropriate than Canada for white. Not many international adoptions from Canada. Or another poorer mostly white country - much of Eastern Europe.
 

tmnchca

New Member
May 23, 2021
11
4
What would cause a spouse to keep moving out into their own apartment?

Also, where is the NPC home/work data saved?
 

Villenia

New Member
Aug 12, 2019
12
12
What would cause a spouse to keep moving out into their own apartment?

Also, where is the NPC home/work data saved?
As for the latter part, I don't know, but the former one, about spouses moving to their home, that's easy. It's a design flaw. The game is based on scripted events. These events are written to be more or less universal, and they often don't check if an NPC is a player's spouse or not. So, the NPC goes to its own home. The most common example of it - if you take your spouse on a date and than select 'say goodbye to companion', you will be prompted to walk your spouse home. One might think you both just go home, but no. The script does not have check if you live together or no, and you will go to NPC's original home.

Keep in mind, all the events are written by one person, who simply cannot keep track of all the scripts he wrote in a few years the game is in development. So, basically, you may try and introduce such check into the script yourself :)
 
  • Like
Reactions: larsV
3.30 star(s) 118 Votes