trynremember

Newbie
Nov 21, 2019
20
19
Can someone make a private MOD for me? Happy to pay. I want more NTR content in game, cuckold humiliation, SPH, racial dialogue etc.
I have kind of been trying my hand at modifying scenes and making my own. Got the idea from Sexybastardo's pimpmygirl and newgoodbye mods which had some nice ntr dirtytalks but were not used much. This is just something I made for my own interest which maybe you or others may like.

So I have modified the offer bull action scene from the original 3 options (threesome, watch, nothing) to 5 options : threesome (same as regular), Cuckolding threesome (new, with selfmade dirtytalk), Sloppy seconds (player humiliation sex, slightly modified sb dirtytalk), Clean up (Licking creampied pussy, slightly modified sb dirtytalk), nothing (same as regular).

Swap roles breaks the cuckold threesome roleplay idk if its possible to filter that option out.

Also added one scene which I have made (taking your date to a club). I think I am also mostly going to modify the sb dirtytalk more as I think it can be changed a bit.

If you want to try it out just download and put folder into modules and make sure load order is lower than NTR module(so it overwrites the offer_bull there). Can use console (~ + filename) if scene is not triggering. Full credit to sexybastardo cos his dirtytalk files gave me this idea.
 

Icebird

Member
Sep 22, 2017
341
242
can someone please explain how to open console?im on laptop and cant seem to open it and how to trigger scenes? what to type please.
Push the insert key. After that on right bottom of the screen, type or copypaste the scene name (without .lpscene extension) into the field. And press enter of coz.
 
Last edited:

straydogg

Member
May 9, 2017
260
123
found this flirt Extended, works very well, has one bug that ive encountered, when gangbanging, if theres more than three, the animation wont show, more than three, i think and they just all stand, dont know why,and im not a modder, not too computer savy, like i said i found this and its not done by me just thought id share it:)
 

NTRlover795

Member
Dec 29, 2019
129
303
I have kind of been trying my hand at modifying scenes and making my own. Got the idea from Sexybastardo's pimpmygirl and newgoodbye mods which had some nice ntr dirtytalks but were not used much. This is just something I made for my own interest which maybe you or others may like.

So I have modified the offer bull action scene from the original 3 options (threesome, watch, nothing) to 5 options : threesome (same as regular), Cuckolding threesome (new, with selfmade dirtytalk), Sloppy seconds (player humiliation sex, slightly modified sb dirtytalk), Clean up (Licking creampied pussy, slightly modified sb dirtytalk), nothing (same as regular).

Swap roles breaks the cuckold threesome roleplay idk if its possible to filter that option out.

Also added one scene which I have made (taking your date to a club). I think I am also mostly going to modify the sb dirtytalk more as I think it can be changed a bit.

If you want to try it out just download and put folder into modules and make sure load order is lower than NTR module(so it overwrites the offer_bull there). Can use console (~ + filename) if scene is not triggering. Full credit to sexybastardo cos his dirtytalk files gave me this idea.
I'll give it a shot! Thanks very much
 
  • Like
Reactions: trynremember

hero357159

New Member
Apr 14, 2021
9
14
found this flirt Extended, works very well, has one bug that ive encountered, when gangbanging, if theres more than three, the animation wont show, more than three, i think and they just all stand, dont know why,and im not a modder, not too computer savy, like i said i found this and its not done by me just thought id share it:)
The issue is with the combination of genders being created by the flirt_after_sex.lpscene

Code:
Actor2 = false
    While !Actor2.isMale() || !Actor2.isValid()
        Actor2.delete()
        
        Random
            Actor2 = getPerson()
            Actor2 = generatePerson()
        EndRandom

        Actor2.randomizeFace()
        Actor2.randomizeHairs()
        Actor2.dress()
    Endwhile
Here they are looking to loop until they create a Male actor

!Actor2.isMale() is the correct check for this, but adding the OR condition for !Actor2.isValid() then ruins it. The current code also creates females, and there are no animations available for the current group of genders so they just stand there. From what I can tell, there aren't any animations that support mixing of genders other than 1+X

These example combos have animations and will work:
FMMM
MFFFF
FMMMM

These do not have any animations, so the actors just stand there:
FFMM
FFMMM
FFFMM

Try replacing it with this copy I've edited (untested, but it should be fine)
 
  • Like
Reactions: srg91

hero357159

New Member
Apr 14, 2021
9
14
You need to do a while loop every time if you are looking a specific gender

Code:
Actor1 = generatePersonTemporary()   // create a person with random visual appearance and stats, you don't get to specify gender here
While !Actor1.isMale() // start a loop, if the peron created was not male then keep looping until it is
    Actor1 = generatePersonTemporary()
Endwhile
This whole process above needs to be handled for each NPC you create and it handles the gender, then after that you can use blending or presets to modify the looks, like:

Code:
Actor1.blendPreset(bodybuilder) // blend the current body shape with the bodybuilder preset
Actor1.randomizeHairs() // randomize hair and face because if you don't they will all use the default bodybuilder hair/face
Actor1.randomizeFace()
If you want a scene to generate a very specific looking character. Create a new NPC in-game, adjust their looks by editing the appearance and then save their body preset. Then use .blendPreset(your_preset) on the person you create in the script
 

Ravenger6660

Active Member
Sep 14, 2017
841
977
found this flirt Extended, works very well, has one bug that ive encountered, when gangbanging, if theres more than three, the animation wont show, more than three, i think and they just all stand, dont know why,and im not a modder, not too computer savy, like i said i found this and its not done by me just thought id share it:)
I sometimes has to do with condom use. promise to pull out or use a condom then hitting spacebar should fix it sometimes.
 

Icebird

Member
Sep 22, 2017
341
242
And there are the Actor1.randomizeRace() and the Actor1.randomizeSexy() commands too. And if you want exactly what you saved you can use Actor1.loadPreset(your_preset). This replaces the temporary character with your preset, not merging together (blending). More about this here: .\LifePlay_4_0_Beta_3_64bit\Docs\Modding\Command_Functions
 

straydogg

Member
May 9, 2017
260
123
The issue is with the combination of genders being created by the flirt_after_sex.lpscene

Code:
Actor2 = false
    While !Actor2.isMale() || !Actor2.isValid()
        Actor2.delete()
       
        Random
            Actor2 = getPerson()
            Actor2 = generatePerson()
        EndRandom

        Actor2.randomizeFace()
        Actor2.randomizeHairs()
        Actor2.dress()
    Endwhile
Here they are looking to loop until they create a Male actor

!Actor2.isMale() is the correct check for this, but adding the OR condition for !Actor2.isValid() then ruins it. The current code also creates females, and there are no animations available for the current group of genders so they just stand there. From what I can tell, there aren't any animations that support mixing of genders other than 1+X

These example combos have animations and will work:
FMMM
MFFFF
FMMMM

These do not have any animations, so the actors just stand there:
FFMM
FFMMM
FFFMM

Try replacing it with this copy I've edited (untested, but it should be fine)
thank you soooo much!!!!!!!!
 

almostideal

Member
May 12, 2020
180
161
Updated to include the scenes cheerleader, show_off_dance and sing_along. There's no extra dialogue for these scenes, if you don't give them your number they just disappear.
 
  • Like
Reactions: srg91

Ravenger6660

Active Member
Sep 14, 2017
841
977
is there a way to specify how npcs get created? races etc?
Think you want to go to settings & "NPC distribution" there you can change Male female & "futa" percentage, Human elf vampire & orc percentage, and body types for male & female/futa. As for race, best to start a game with majority race you want at the percentage you want.
 

a1fox3

Loving Family Member's
Donor
Respected User
Aug 8, 2017
24,076
16,535
Been a while since I have downloaded this and played it so time to do so again.
 

Xiv2

New Member
May 1, 2021
10
0
Bugs that cause CTD or freezing up definitely need fixing.
I can only make this Game to freeze, when starting out on an big Map like Vancouver, and than on the Map selection i create set random Buildings to 20% Chance for each Building type.
I could start an Character on that Map, once it was saved and than loaded, LifePlay was taking all of my RAM, wich is not normal, and never happened without crazy settings when setting up the Map.
Besides that Lifeplay is Rock Solid on my end, no Crashes, Freezes or anything like that.
Could it be that it`s yust an outdated Mod that is acting up here?
 

Greendasteel

Member
May 28, 2018
154
104
why others dont do such a stable and monthly updates like vinfamy...
better get money for nothing then make your projects better...
 
3.30 star(s) 118 Votes