straydogg

Member
May 9, 2017
260
127
Love who ever did the Orc scenes, the introduce to tribe, deflower, Orc breeds, roleplay and the kidnap scenes, are just the way An Orc would be like, very well done,(y):p, OH and Thank you! and it fires quite often too, works so good ive had to sethow often scenes fire to 3, cuz of too many scenes firing too often, cant get any thing done wiithout 11 scenes firing duringwork and so on. and it makes this game a Pleasure to play,
 
Last edited:

Pilotus13

Newbie
Aug 14, 2018
32
26
Can't start the game - at menu screen the game either closes or I get a "Fatal error" message and then it closes. Thought about conflicting versions (had v.23 on the diskas well), but deletion did not work... Can anyone suggest a workaround?..
PS: after trying LP 4.0 for the first time, my older version also started to crash the same way...
 
Last edited:

Goibniu

New Member
Aug 5, 2016
7
6
Can't start the game - at menu screen the game either closes or I get a "Fatal error" message and then it closes. Thought about conflicting versions (had v.23 on the diskas well), but deletion did not work... Can anyone suggest a workaround?..
PS: after trying LP 4.0 for the first time, my older version also started to crash the same way...
The 'fatal exception' happens to me on a fairly regular basis and I just keep relaunching it until it starts up. At the most it's taken 4 times. When it happens it'll copy the error message to the clipboard and and you paste it into notepad. All the times I've looked it's been "EXCEPTION_ACCESS_VIOLATION".

Never had it outright close without an error. Make sure you have enough ram/swap as it does suck down 4GiB+ on my system after a clean start and can imagine it sucks even more after a period of play.
 

Mia Taco

New Member
Jun 7, 2017
10
7
Can someone tell me how can I look for a job? I quited my job but now I don't get the "I should look for a work" auto message again. How do I do it manually again? Please? Someone?
 

themodkid

New Member
Nov 19, 2017
1
0
Can someone tell me how can I look for a job? I quited my job but now I don't get the "I should look for a work" auto message again. How do I do it manually again? Please? Someone?
Just click on an available office marker on the world map, and it should have the option to apply for a position.

Same should go for hospitals if you're going for a medical career route.
 

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
396
284
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
127
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
136
316
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

Newbie
Apr 14, 2021
16
30
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

Newbie
Apr 14, 2021
16
30
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
 
3.30 star(s) 118 Votes