quarzo

Active Member
Aug 25, 2017
889
765
Well, the only 'preset' npcs use is a list of what morphs should be used and a random value range that those fall into. If you're wanting to do that, you'd have to use a text editor to edit the default .lpcharacter files in vin_base/presets for it. But if you do that then every npc in the game will look like this. There is no other way apart from creating or modding scenes and inputting the values there.
i dont know if i am bugged, but i already tried edit all preset files with my custon lines, and still spawn default ones, is like a master rule is over passing all the presets
 

straydogg

Member
May 9, 2017
258
122
i dont know if i am bugged, but i already tried edit all preset files with my custon lines, and still spawn default ones, is like a master rule is over passing all the presets
that would be Bridget and Micheal, found in the Heavy file, you can remove the whole preset and Quests file from vin_Base and the Default, Bridget and Micheal take priority, and Characters used to have two files of the Skeleton Base but it is now just one, when the skeleton had two files, before 4.0 it would reconize customs, now it does not, so far anything you do to those two files,Micheal and Bridget, located, in LifePlay, Content, Heavy, Daz, will have the game not work at all, it wont even start, as stated the way if you want customs in the game is to put the name of yur custom with a _M or _F at the end and add them to pop and pop1, in meet random in vin_ Base, where it says generatePersonTemperary(customname_M),or _F, works for me, and the meet couple any scene with generatePersonTemperary canhave its own body preference to it, i run my own presets, and none of the ones that come with the game, i have myown custom presets and quest characters, that i have been useing for two years now and with no problems at all with generating different types of bodies in the game,
 

quarzo

Active Member
Aug 25, 2017
889
765
that would be Bridget and Micheal, found in the Heavy file, you can remove the whole preset and Quests file from vin_Base and the Default, Bridget and Micheal take priority, and Characters used to have two files of the Skeleton Base but it is now just one, when the skeleton had two files, before 4.0 it would reconize customs, now it does not, so far anything you do to those two files,Micheal and Bridget, located, in LifePlay, Content, Heavy, Daz, will have the game not work at all, it wont even start, as stated the way if you want customs in the game is to put the name of yur custom with a _M or _F at the end and add them to pop and pop1, in meet random in vin_ Base, where it says generatePersonTemperary(customname_M),or _F, works for me, and the meet couple any scene with generatePersonTemperary canhave its own body preference to it, i run my own presets, and none of the ones that come with the game, i have myown custom presets and quest characters, that i have been useing for two years now and with no problems at all with generating different types of bodies in the game,
new question, at character creation I export my custom, this is save at: \LifePlay\Content\Modules

then i rename it At voluptuous_F, then i put this name directly on pop's files? or i need move too my voluptuous_F to another folder?

later on pop and pop1 files I use the file name on the method like

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

    SceneStart()
    Actor = generatePersonTemporary(voluptuous_F)
    Actor1 = generatePersonTemporary(voluptuous_F)
    Actor2 = generatePersonTemporary(voluptuous_F)
    Actor.show()
    Actor1.show()
    Actor2.show()
    "Shown"
    SceneEnd()

but still not work, when i go to another place, the bodys still spawn random, what i am missing?
 

Ravenger6660

Active Member
Sep 14, 2017
826
960
new question, at character creation I export my custom, this is save at: \LifePlay\Content\Modules

then i rename it At voluptuous_F, then i put this name directly on pop's files? or i need move too my voluptuous_F to another folder?

later on pop and pop1 files I use the file name on the method like

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

    SceneStart()
    Actor = generatePersonTemporary(voluptuous_F)
    Actor1 = generatePersonTemporary(voluptuous_F)
    Actor2 = generatePersonTemporary(voluptuous_F)
    Actor.show()
    Actor1.show()
    Actor2.show()
    "Shown"
    SceneEnd()

but still not work, when i go to another place, the bodys still spawn random, what i am missing?
Code:
EXAMPLE:
    Actor.loadPreset(bodybuilder_F)
    Random
        Actor.loadPreset(hourglass_F) // Just a normal hourglass girl
        Actor.blendPreset(hourglass_F) // There is still signs of the bodybuilder
    EndRandom
 
  • Wow
Reactions: quarzo

quarzo

Active Member
Aug 25, 2017
889
765
Code:
EXAMPLE:
    Actor.loadPreset(bodybuilder_F)
    Random
        Actor.loadPreset(hourglass_F) // Just a normal hourglass girl
        Actor.blendPreset(hourglass_F) // There is still signs of the bodybuilder
    EndRandom
damn i am a bit confuce, how to use it.


then after only add the load and blend methods?

Actor = generatePersonTemporary()
Actor.loadPreset(voluptuous_F)
Actor.blendPreset(voluptuous_F)


or after generate i nees put it on the random / endrandom?(oks is another funtions for add multiple options)

i put the actor.load at pop and pop1 file, but i dont see changes
 
Last edited:

Ravenger6660

Active Member
Sep 14, 2017
826
960
damn i am a bit confuce, how to use it.


then after only add the load and blend methods?

Actor = generatePersonTemporary()
Actor.loadPreset(voluptuous_F)
Actor.blendPreset(voluptuous_F)


or after generate i nees put it on the random / endrandom?(oks is another funtions for add multiple options)

i put the actor.load at pop and pop1 file, but i dont see changes
How I use it.

Code:
Stripper = generatePersonTemporary()//randomly create character
While !Player.isInterestedIn(Stripper) || age > 39
    Stripper = generatePersonTemporary()//make sure they are gender you want.
Endwhile

If Stripper.isMale()//If male load this body type
    Random
        Stripper.loadPreset(athletic)
        Stripper.loadPreset(bodybuilder)
        Stripper.loadPreset(ideal)
        Stripper.loadPreset(athletic)
    Endrandom      
Else//If female/futa load this body type
    Random
        Stripper.loadPreset(hourglass1_F)
        Stripper.loadPreset(hourglass2_F)
        Stripper.loadPreset(fashion_model_F)
        Stripper.loadPreset(fitness_model_F)
        Stripper.loadPreset(slender_F)
        Stripper.loadPreset(shapely_F)
    Endrandom
Endif
Stripper.randomizeFace()//random face
Stripper.randomizeHairs()// hair
Stripper.randomizeRace()//random race
 
  • Love
Reactions: quarzo

quarzo

Active Member
Aug 25, 2017
889
765
How I use it.

Code:
Stripper = generatePersonTemporary()//randomly create character
While !Player.isInterestedIn(Stripper) || age > 39
    Stripper = generatePersonTemporary()//make sure they are gender you want.
Endwhile

If Stripper.isMale()//If male load this body type
    Random
        Stripper.loadPreset(athletic)
        Stripper.loadPreset(bodybuilder)
        Stripper.loadPreset(ideal)
        Stripper.loadPreset(athletic)
    Endrandom     
Else//If female/futa load this body type
    Random
        Stripper.loadPreset(hourglass1_F)
        Stripper.loadPreset(hourglass2_F)
        Stripper.loadPreset(fashion_model_F)
        Stripper.loadPreset(fitness_model_F)
        Stripper.loadPreset(slender_F)
        Stripper.loadPreset(shapely_F)
    Endrandom
Endif
Stripper.randomizeFace()//random face
Stripper.randomizeHairs()// hair
Stripper.randomizeRace()//random race
duuuude ty very mush, this work smootly!!!
 
  • Like
Reactions: Ravenger6660

R0y

Member
Nov 25, 2017
371
223
The Klub17 content has been completely removed
The forum has been updated
A complete backup has been done
Welcome to the LifePlay forum Thumbs up Rock on Party Party
Note: all themes have not been updated and as I don't need to shut the forum down to repair them. I'm getting to them while it's open. Please bare with me.
Godspeed
Roy
Is there a script
 

Medievalover

Obsessed with thicc women!
Modder
Oct 18, 2020
474
7,112
Presets Banner.jpg

Overview:
My collection of custom character presets for LifePlay, focused most on fantasy themes.

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

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

Download:

Lillith, The Lustful Succubus

Pixiie, The Sex Android

Tara, The Elf Warrior


Trinity, The THICC Vampire


All In One Pack (Optional):
You don't have permission to view the spoiler content. Log in or register now.

Lillith, The Lustful Succubus (Final).jpg Pixiie,The Sex Android (Wallpaper).jpg Tara, The Elf Warrior (Wallpaper).jpg (Wallpaper) Trinity_The TICC Vampire.jpg
 
Last edited:

RevanXe

Member
Oct 10, 2017
195
172
So i'm having an issue i never used to have before the recent 4.0 update, torso tattoos don't work for me, as in i cant apply then when i press the button, nothing happens but the others work. Also if i have saved characters that had torso tattoos already those are fine, but can't apply on new characters. Any ideas? Or is this a known issue?
 

R0y

Member
Nov 25, 2017
371
223
I would upload all the content here on to the LifePlay website , link to the game and updates, mods, character presets, rooms and so forth. I would love to have it all there... but it's not right because I feel the person that made it should upload it there, they deserve the credit, not me.
 

shalayn

New Member
Jul 2, 2021
1
1
Great game, I'm so happy to have stumbled over this!
I'm wondering if there's any way to prevent "pussy too dry" after an orgasm or disable that feature. It really ruins the fun.
 
  • Like
Reactions: GrabberWalkie

Deleted member 2476484

Member
Modder
Jun 15, 2020
164
117
I would upload all the content here on to the LifePlay website , link to the game and updates, mods, character presets, rooms and so forth. I would love to have it all there... but it's not right because I feel the person that made it should upload it there, they deserve the credit, not me.
I will add my mods, soon !
Change the favicon for this: vinfamy.png or something like ;)
No, offense, but I wish you will change the header for something who is more like LifePlay.
BTW, good start !
If you need help with the design of your website, maybe I can help!
 
  • Like
Reactions: R0y
3.30 star(s) 117 Votes