brigade29

Newbie
Apr 17, 2019
79
26
Hello everyone, can someone tell me why i can't pimp my pnc out while her attraction and pervertion are full ? she always refuse and our relation rapport suffer ... is it a bug or what ?
 

Hell Razor

Newbie
Sep 17, 2021
39
40
Hello everyone, can someone tell me why i can't pimp my pnc out while her attraction and pervertion are full ? she always refuse and our relation rapport suffer ... is it a bug or what ?

Has to be at least a bit submissive. Or you can edit the file to make it easier...
 

Rebby

Member
Apr 17, 2017
210
312
I'm getting a bug where the game freezes up while trying to run
Pornstar_porn_shoot_public
luckely the game recognises its running a loop and times out.

anyone else running into this?
 

Ravenger6660

Active Member
Sep 14, 2017
826
960
I'm getting a bug where the game freezes up while trying to run
Pornstar_porn_shoot_public
luckely the game recognises its running a loop and times out.

anyone else running into this?
I'll look into. I'm the one who made it.

How it work it should work is that it makes a random pornstar blends them with a better body.
Code:
Pornstar = generatePersonTemporary()
While !Player.isInterestedIn(Pornstar) || age > 39
    Pornstar = generatePersonTemporary()
Endwhile
Then generates other npcs based on the pornstar's gender interests.

I do find that when I set male population to 0.01 it takes a while for a 'straight female pornstar' to get the male companions. Age might be the problem as well.

Where does it break?
At start or during.
 
Last edited:

jabberwockyjon

New Member
Aug 6, 2021
6
0
Does anyone know how to make your character default to the center of a gangbang for porn scenes? Nothing in the scene description is cluing me in on what to change.
 

DitaVonTease

Active Member
Jul 25, 2021
586
1,199
Silly question time, how do you get yourself into a long term BDSM scene, or lots of public sex, (think ''Public Disgrace'' videos, either as a sex slave to a mixed audience, or at a Lesbian Bar?).
 

knurd

Member
Jun 2, 2019
105
69
I had a girlfriend who was always in the bedroom with me in the evenings. I got another girlfriend and now the girlfriend no longer in the bedroom with me? Anybody know how to get her to do that again? I tried to make her the only girlfriend/wife & I got rid of the other girlfriend but can't never get her to be there in the evenings anymore? The move in sqript doesn't work either.
 

Ravenger6660

Active Member
Sep 14, 2017
826
960
Does anyone know how to make your character default to the center of a gangbang for porn scenes? Nothing in the scene description is cluing me in on what to change.
position in command
male vs female is a factor

filter(aggressive)
filter(aggressiveFM)

Sex(Player, Actor, Actor2, Actor3)

not

Sex(Actor, Actor2, Actor3, Player)
 
  • Like
Reactions: jabberwockyjon

Vorastrix

Newbie
Mar 19, 2018
17
9
I'll look into. I'm the one who made it.

How it work it should work is that it makes a random pornstar blends them with a better body.
Code:
Pornstar = generatePersonTemporary()
While !Player.isInterestedIn(Pornstar) || age > 39
    Pornstar = generatePersonTemporary()
Endwhile
Then generates other npcs based on the pornstar's gender interests.

I do find that when I set male population to 0.01 it takes a while for a 'straight female pornstar' to get the male companions. Age might be the problem as well.

Where does it break?
At start or during.
I have the same issue of the game freezing when some scenes are starting. In all cases for me they are when my character is female and the generatePersonTemporary() is used. Form what I can tell it is when the generatePersonTemporary() is called at the start of the scene.
 
Last edited:

Ravenger6660

Active Member
Sep 14, 2017
826
960
I'm getting a bug where the game freezes up while trying to run
Pornstar_porn_shoot_public
luckely the game recognises its running a loop and times out.

anyone else running into this?
I have the same issue of the game freezing when some scenes are starting. In all cases for me they are when my character is female and the generatePersonTemporary() is used. Form what I can tell it is when the generatePersonTemporary() is called at the start of the scene.
I made a fix.
the only way an infinite loop could occur is if the pornstar had no gender preferences (AKA Does not want to have sex with male, female, nor futa)

my fix, check if that is now the case.

Code:
    if Pornstar.isAsexual()
         Pornstar.makeInterested(player)
    Endif
    While !Pornstar.isInterestedIn(Actor2)
        Actor2 = generatePersonTemporary()
    Endwhile
 

Rebby

Member
Apr 17, 2017
210
312
I made a fix.
the only way an infinite loop could occur is if the pornstar had no gender preferences (AKA Does not want to have sex with male, female, nor futa)

my fix, check if that is now the case.

Code:
    if Pornstar.isAsexual()
         Pornstar.makeInterested(player)
    Endif
    While !Pornstar.isInterestedIn(Actor2)
        Actor2 = generatePersonTemporary()
    Endwhile
thanks for the effort, but sadly I encounter the same error as before.
maybe its on my end, my pc is about 7-8 years old still running win 8.1
 

Vorastrix

Newbie
Mar 19, 2018
17
9
I made a fix.
the only way an infinite loop could occur is if the pornstar had no gender preferences (AKA Does not want to have sex with male, female, nor futa)

my fix, check if that is now the case.

Code:
    if Pornstar.isAsexual()
         Pornstar.makeInterested(player)
    Endif
    While !Pornstar.isInterestedIn(Actor2)
        Actor2 = generatePersonTemporary()
    Endwhile
I found the source of the bug on my end. My character had no gender preferences (my character was the one that didn't want sex with anyone) and that was causing the problem.
 
  • Like
Reactions: Ravenger6660

Satyr90

Member
Dec 23, 2020
276
185
Quick question for the community... I'm currently trying to write my own scenes and even got a quest event working. However, I was wondering if it was possible to trigger an option to start a quest (as in making the quest option previously hidden then appear) after you'd play out a random scene (one that I created). I thought it'd be fun if the player wanted to pursue a scene into a more complex story-driven questline, which could then unlock a series of consequences/scenes after the quest is complete to allow the player to live with their decisions. To my knowledge, I haven't found anything like this in the game so I don't know if it's even possible but while creating a scene I thought it'd be interesting if I could use the scene to create a potential quest.
 

Deleted member 2476484

Member
Modder
Jun 15, 2020
164
117
Silly question time, how do you get yourself into a long term BDSM scene, or lots of public sex, (think ''Public Disgrace'' videos, either as a sex slave to a mixed audience, or at a Lesbian Bar?).
Their is not a lot of BDSM scenes. Create a mod or share a story, I'm sure one modder will be glad to code it (like me, depending on the content ;) ).
 

Morrigan12345

Newbie
Feb 5, 2021
54
153
Hello all, can someone please explain in detail (for dummies) how to make random scenes occur often (just a few times each day). I tried to figure out what was written before, but did not understand anything. And how to enable some scenes (NTR) because none of them are playing for me. I need to edit the files directly through Notepad or what? (If so, how exactly, what line and what numbers to enter), or change something in the settings of the game (because I tried different settings, but the effect is the same). I have three days of agonizing, Tried verything but did not understand how to make scenes ntr appeared and the very random events occurred more often (now they occur once every half an hour or hour (real time while I poke all the action in all places). I will be very grateful if there is a person who will explain everything in detail) If someone would be so kind, I would be glad if you could write down the steps directly (like, 1- Go to the game directory, 2- open the file, etc.)
 

Vinfamy

creating moddable 3D life simulator
Game Developer
Jul 5, 2017
1,250
4,847

As you know, the Kinks of the Month (KotM) polls have been a thing for quite a while now and are now directly responsible for deciding the focus of 2 out of 3 updates every month, i.e. 66% of the game's content. They have largely worked quite well, but there is definitely an issue with the same ~8 kinks taking turns to win again and again. Also, despite the extra vote given to $3+ patrons, from past results, this hasn't actually been a single month where this actually changed any of the top 2 winning kinks from the normal poll.
So from this month onwards, I'm introducing 2 changes to the KotM polls:
- Firstly, the exclusion period from future polls for each winning kink is increased from 2 months to 3 months (meaning even the most popular kink can only win max once every 4 months, or 3 times a year).
- Secondly, on the 24th of each month, there will now be 3 polls posted on Patreon - each patron is asked to vote in one poll only meant for their tier:
-- x1 Weighted Poll for $1 to $4 Patrons
-- x3 Weighted Poll for $5 to $9 Patrons
-- x9 Weighted Poll for $10 or above Patrons
This will allow more kinks to be worked on and higher-tier patrons to have a proper say.
The math behind the new poll weightings for the different tiers of patrons is as follows: At the time of this post, there are:
- 239 patrons supporting between $1 to $4, their votes are weighted x1 so they provide 239 effective votes
- 81 patrons supporting between $5 to $9, their votes are weighted x3 so they provide 243 effective votes
- 28 patrons supporting at $10 or above, their votes are weighted x9 so they provide 252 effective votes
This is fair because the influence on the poll results ends up being divided pretty equally between the 3 groups of patrons (32.6%, 33.1% & 34.3% respectively), and the higher tier patrons can actually have a say rather than being outnumbered all the time.

Thank you for all of your support of the project! Kinks of Month are now such a big part of it that hopefully these changes will make the process fairer and more interesting for all involved.

Kinks of the Month for October (v4.14 & v4.15)
please vote before 3 October
- x1 Weighted Poll for $1 to $4 Patrons:
- x3 Weighted Poll for $5 to $9 Patrons:
- x9 Weighted Poll for $10 or above Patrons:
 

Deleted member 2476484

Member
Modder
Jun 15, 2020
164
117
Hello all, can someone please explain in detail (for dummies) how to make random scenes occur often (just a few times each day). I tried to figure out what was written before, but did not understand anything. And how to enable some scenes (NTR) because none of them are playing for me. I need to edit the files directly through Notepad or what? (If so, how exactly, what line and what numbers to enter), or change something in the settings of the game (because I tried different settings, but the effect is the same). I have three days of agonizing, Tried verything but did not understand how to make scenes ntr appeared and the very random events occurred more often (now they occur once every half an hour or hour (real time while I poke all the action in all places). I will be very grateful if there is a person who will explain everything in detail) If someone would be so kind, I would be glad if you could write down the steps directly (like, 1- Go to the game directory, 2- open the file, etc.)
Best way to started is to read the Doc for modding included with all LifePlay version.
 

kuro95zone

Newbie
Jul 8, 2021
77
54
Raddeck is refering to the doc's located in the game folders > \LifePlay\Docs\Modding

\LifePlay\Docs\Modding\FullGuides\Writing_Scenes.txt perhaps that one
Did you enable the ntr mod?

you will have to read the "Triggering a scene" to see what is require and perhaps change the timer at the very bottom on a scene
 
3.30 star(s) 117 Votes