I'll look into. I'm the one who made it.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?
Pornstar = generatePersonTemporary()
While !Player.isInterestedIn(Pornstar) || age > 39
Pornstar = generatePersonTemporary()
Endwhile
position in commandDoes 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.
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'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.
Then generates other npcs based on the pornstar's gender interests.Code:Pornstar = generatePersonTemporary() While !Player.isInterestedIn(Pornstar) || age > 39 Pornstar = generatePersonTemporary() Endwhile
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'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 made a fix.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.
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.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.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
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 ).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?).
Best way to started is to read the Doc for modding included with all LifePlay version.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.)
I've just discovered the condition isQuestCompleted for various scenes. I never found that command in the documents folder and I've been forced to learn by looking at other scenes made by Vin since the documents folder hasn't been updated in a while. But if I wanted to use a random scene to start a quest do you know how I could do it? I know you can add and remove objectives after a quest has already started, but how do you hide a quest from the start of the game then reveal it once specific conditions are met? For example, if the PC has a scene where his boss, or neighbor, or friend, or anyone does something suspicious and the player decides to investigate, how could I use that to start a quest where the PC investigates this person. I know I'd have to most likely use setGlobal and whatnot to save the specific character in the scene (I think) but how do I start the quest from a line of code in a scene, or at the least reveal the quest?Yes it's doable.
This is what I try to do with some of my mods but progressively, because I'm doing it on my free time.
Especially with the "Remake", so far, I added more than 400 files and I edited all files inside vin_ folders. Also, Ravenger6660 added more than 200 files.
Because doing a mod who overwrite an existed scene, can be overwritten by other mods and can create bugs.
So I created a mega mod who include all modified scenes from modders who wants to join.
So, instead of overwriting a scene, your modifications are added inside other modifications.
Few examples of additions we started:
1 - University courses to finish ...
2- Hunger
3- urge to pee
4- Christianity (Ravenger6660)
5- Police life (Ravenger6660)
6- So I create criminal life and criminal report (9 charges)
......
Examples of goals for future
1- If you don't have specific diplôme/certificats, you cannot have the job
2- If you don't eat, you will die soon
3- If you don't check your urge to pee, thing can happen
4- If you begin to being too prude,
5- Being a policeman and follow his/her adventures
6- More scenes will be added about that.
......
Hiding an action (lpaction) from the menu it's not doable, the action can only will be blurred (in dark gray).But if I wanted to use a random scene to start a quest do you know how I could do it?