exjoker \SX

Newbie
Oct 14, 2022
83
60
OK, finally, I can have a vanilla sex scene in my gameplay!:ROFLMAO:

As long as I don't propose a more intimate relationship with NPC, I can feel free to release my MC's arousal mood. Yes, eating random pussy and sucking random girly dick is OK while the same thing with a dating partner is not accessible.

Can I claim that this game is encouraging the MC to be a horny slut, rather than to be a pure wife or girlfriend?
 

Ravenger6660

Active Member
Sep 14, 2017
861
1,008
was this game continued by someone after abandonment?if so can someone list me on new "mods" update?
https://f95zone.to/threads/lifeplay-v2023-04-stable-vinfamy.11321/post-4143701
I have been away, looking at other stuff. But I believe my Mod is the most up-to-date still, and has to most features.
I am planning about doing a full rebuild/replace of every scene in the game to reduce the amount scenes and better scene quality.

https://f95zone.to/threads/lifeplay-v2023-04-stable-vinfamy.11321/post-2659408
Has some descent ones that can work but are old. DO NOT use his BETTER PREGNACY

https://f95zone.to/threads/nicknos-lifeplay-mods.71827/post-4947983
I never used, but is still functional.

https://f95zone.to/threads/lifeplay-v2023-04-stable-vinfamy.11321/post-3049865
Some more scenes.

https://f95zone.to/threads/lifeplay-v2023-04-stable-vinfamy.11321/post-3016638
One of the first mods to be abandoned and the reason I started modding I took most of the stuff and improved upon it. If you don't use anything in mine this one is good.
 

R0y

Member
Nov 25, 2017
384
241
There is something similar to trash when I gather poly members moving on the floor. Very annoying. I know how to fix it by opening up the ncps files and deleting all the ones except the ones I want. The save is on a year and half now and there are over a 1000 npcs and would take forever deleting them all. Does anyone have any idea how to fix it without doing that? I would really appreciate the help.
 

Ravenger6660

Active Member
Sep 14, 2017
861
1,008
There is something similar to trash when I gather poly members moving on the floor. Very annoying. I know how to fix it by opening up the ncps files and deleting all the ones except the ones I want. The save is on a year and half now and there are over a 1000 npcs and would take forever deleting them all. Does anyone have any idea how to fix it without doing that? I would really appreciate the help.
Here is a scene for you that will delete every npc that is not in you contacts.
Code:
    SceneStart()
    Delete_Person = getPerson(false)
    While Delete_Person.isvalid()
        Delete_Person.deletePerson()
        Delete_Person = getPerson(false)
    Endwhile
    SceneEnd()
If you want to delete Npcs in contacts that have a trait you don't like. Like getting rid of all Npcs over 50 years old.
It can also be change to be.
Delete_Person:fitness < 10
Delete_Person: Perversion <= 20
Delete_Person:muscle >= 80
Delete_Person.isAsexual()
Delete_Person.isGay()
Delete_Person.isMale()
Delete_Person.isProstitute()
Delete_Person.isTrans()
Delete_Person.isCreature()
Delete_Person.isInterestedIn(player) //If they like player's gender
!Delete_Person.isInterestedIn(player) //If they don't like player's gender

Code:
    SceneStart()
    Delete_Person = getPerson(true)
    While Delete_Person.isvalid()
        If Delete_Person:age > 50
            Delete_Person.deletePerson()
        Endif
        Delete_Person = getPerson(true)
    Endwhile
    SceneEnd()
 
Last edited:

Giantguy8854

New Member
Jan 30, 2024
14
31
There aren't any. It would be extremely difficult if not impossible for anyone besides the dev, who has been MIA for a long time now.
On this topic, I'm curious if it would be simple to swap out some of the gender-specific sex animations. For instance, could we take some of the transmale animations and adapt them for straight males? I recently tried the transmale on female animations, and I actually prefer them since they include facial animations. I think adding more options for males, especially the missionary makeout vag, doggy vag, prone bone vag or lying down vag animations, would be great. It surprises me that there aren't enough prone bone animations for straight men, considering they're simple and all the good ones are locked for transmale, while there are so many variations for foot animations for some reason :sick:.
 

HighKnow

Newbie
Feb 18, 2018
29
20
Here is a scene for you that will delete every npc that is not in you contacts.
Code:
    SceneStart()
    Delete_Person = getPerson(false)
    While Delete_Person.isvalid()
        Delete_Person.deletePerson()
        Delete_Person = getPerson(false)
    Endwhile
    SceneEnd()
If you want to delete Npcs in contacts that have a trait you don't like. Like getting rid of all Npcs over 50 years old.
It can also be change to be.
:fitness < 10
: Perversion <= 20
:muscle >= 80
.isAsexual()
.isGay()
.isMale()
.isProstitute()
.isTrans()
.isCreature()
.isInterestedIn(player)
//If they like player's gender
!Delete_Person.isInterestedIn(player) //If they don't like player's gender

Code:
    SceneStart()
    Delete_Person = getPerson(true)
    While Delete_Person.isvalid()
        If Delete_Person:age > 50
            Delete_Person.deletePerson()
        Endif
        Delete_Person = getPerson(true)
    Endwhile
    SceneEnd()

I'd be interested in a mod like that, too. I also have a bunch of NPCs I'd like to delete from my save game. And from what you've described, it doesn't seem like much effort. Unfortunately, I have no idea about programming. I can edit finished files and make a few changes, but unfortunately, I'm not good at writing them myself. Would it be too much to ask if you could please write it down and upload it here for download? Or is that a bit too much to ask?

But I have to ask again:
Is this about all the NPCs in a save game or the NPCs in the contact list?
 

HighKnow

Newbie
Feb 18, 2018
29
20
I have this when going through the import skins when I go through the list and there are 2048 skins then selecting 4096 then back to 2048. this never happens when I use custom skins it only shows up on the default ones.


Do you happen to know which folder the standard texture is located in, which all NPCs and your own character access? I still have the problem. If I use the lower resolution you recommended, the problem occurs a few minutes after loading the save game. If I choose the higher resolution, I can sometimes play for one or two hours before the problem occurs again. I'm hoping that if I find the actual texture and replace it with a different one, the problem will go away.

I suspect that the original texture has a lower resolution than the 2048, and that's where the problem arises. Because in the end, it looks as if the original texture is somehow too small, so that the edges don't line up properly, creating this white gap between the individual texture pieces. At least, that would seem very logical to me.
 

ianskman

Member
Mar 12, 2021
211
275
Do you happen to know which folder the standard texture is located in, which all NPCs and your own character access? I still have the problem. If I use the lower resolution you recommended, the problem occurs a few minutes after loading the save game. If I choose the higher resolution, I can sometimes play for one or two hours before the problem occurs again. I'm hoping that if I find the actual texture and replace it with a different one, the problem will go away.

I suspect that the original texture has a lower resolution than the 2048, and that's where the problem arises. Because in the end, it looks as if the original texture is somehow too small, so that the edges don't line up properly, creating this white gap between the individual texture pieces. At least, that would seem very logical to me.
The original base textures are in lifeplay/content/heavy/daz/ Michael folder for male Bridget for female. and they are compiled in a weird format that I don't know how to unpack. I suggest that you use a custom 2048 skin for your player character Ive posted some here earlier in the threads. I keep my custom textures in the lifeplay/content/modules folder I found the male base textures Vin used online some time ago,these are the ones he packed into the weird file format.resize them to 2048 if needed , you can find some 4096 textures in the modules/celebs folder for you player female character if needed .
 
Last edited:

Ravenger6660

Active Member
Sep 14, 2017
861
1,008
I'd be interested in a mod like that, too. I also have a bunch of NPCs I'd like to delete from my save game. And from what you've described, it doesn't seem like much effort. Unfortunately, I have no idea about programming. I can edit finished files and make a few changes, but unfortunately, I'm not good at writing them myself. Would it be too much to ask if you could please write it down and upload it here for download? Or is that a bit too much to ask?
I just use a free program called NotePad++ to make/edit scenes. I mostly take a scene & do a "save as" and make new scenes that way.
I also found a "LifeplaySyntax" language which easily shows errors in code. [It is some where here or in the discord.]
But yes you will need some programming skills to code. Java or maybe Python at least.

But I have to ask again:
Is this about all the NPCs in a save game or the NPCs in the contact list?
getPerson(false) == all npcs, not family, and not in contact list
getPerson(true) == all npcs, not family, and only in contact list
getPerson() == all npcs, not family
getRelative() == all family members, except ex-relatives (Aka Relatives converted to regular NPCs).
 

Anteron

Engaged Member
Jun 17, 2023
2,310
2,813
I think the faces of the characters that are created scared him off.
No, some came up ugly on their own (and some morbidly obese if you didn't fix the settings.) Also, you should have seen what the original ones looked like before the 2nd set of releases.
 
3.30 star(s) 118 Votes