Fuzzcat

Active Member
Oct 27, 2017
624
662
use NickNo's mod manager (NickNo Ravenger Raddek)- most mods in it up to date and updated\fixed really fast(critical bugs - less than 24 hours) + rooms without curtains(still curious why it's not part of original game?!?). Most other completely outdated and bugged as Hell
Not true - saves from 3.x broken completely, if any mods used and partial, if not used. :coffee:
Not true how?
I'm talking about starting new, which is most likely something that someone -after a long time- would need to do.

And why would you use a 3.x version, when the latest version is better in any aspect? (loading speed, models, optimization, etc)
I don't use NickNo mod manager, I'm using over a dozen mods (of different modders), and have absolutely no problems.
 

Icebird

Member
Sep 22, 2017
313
221
Someone knows why this simple dressing command not run?
'Actor.dress(Cheerleader-Uniform_1_F)'
I tried many way but only the 'Actor.dress()' working. Else the Actor show naked.
I'll starting mad without a proper and updated modding documents... :mad:
 

schmihe

New Member
Dec 2, 2019
5
0
Short Question, I try to add the mom to a scene, somebody know, why this is not working?
Actor = getRelatedPerson(Parent) && Actor = Actor.isFemale()
there must be some mistake on my part, but I don't understand which one :unsure:
 

Grim

Active Member
Aug 17, 2016
641
477
Short Question, I try to add the mom to a scene, somebody know, why this is not working?
Actor = getRelatedPerson(Parent) && Actor = Actor.isFemale()
there must be some mistake on my part, but I don't understand which one :unsure:
If you're trying to get your character's mom then getRelative(Parent) is what you want, rather than getRelatedPerson(). getRelatedPerson() gets called on another actor like Actor.getRelatedPerson(ParentChild).

Assuming it's your mom you want, there's a couple ways you could do it. If you do it within the body of the scene then you'd have to do something like:
Code:
Actor = getRelative(Parent)
While !Actor.isFemale()
    Actor = getRelative(Parent)
Endwhile
I wouldn't recommend doing it this way since it'll cause an infinite loop if your character doesn't have a mother.

You're probably better off doing it in the WHO line at the top of the scene though like so:
Code:
WHO: Actor = getRelative(Parent); If Actor.isFemale()
 
Last edited:

Deleted member 2476484

Member
Modder
Jun 15, 2020
164
117
I was meaning to remove a perk from a current save I'm playing with. I chose the Sneaky Bull when I didnt mean to. Is there a way to remove it from my character via editing the savefile ?
Once you start a quest it cannot be stopped or you can't go back after you stopped it...
To modify perks, edit: C:\...\LifePlay\Content\Saves\10\Characters\Player.lpcharacter
(10 --> 10th save slots)
Edit the line containing: STAT perks: 100% 0.0
 
  • Like
Reactions: akuma35

schmihe

New Member
Dec 2, 2019
5
0
You're probably better off doing it in the WHO line at the top of the scene though like so:
Code:
WHO: Actor = getRelative(Parent); If Actor.isFemale()

thanks for the hint, the Who line doesn't work like that either, it is called either mom or dad, but after a few tries I have now found that:
Code:
WHO: Actor = getRelative (Parent) && If Actor.isFemale ()
works great, so thank you for pointing me in the right direction.
 

Grim

Active Member
Aug 17, 2016
641
477
Code:
WHO: Actor = getRelative (Parent) && If Actor.isFemale ()
works great, so thank you for pointing me in the right direction.
That shouldn't work as far as I know. None of the scenes I've seen are written like that, and that's not how the modding docs say to write it, but if it's working for you then go with it. Everything I've looked at says you need a ; followed by the If to add a condition to the WHO trigger
 

akuma35

Newbie
Dec 26, 2020
35
50
Once you start a quest it cannot be stopped or you can't go back after you stopped it...
To modify perks, edit: C:\...\LifePlay\Content\Saves\10\Characters\Player.lpcharacter
(10 --> 10th save slots)
Edit the line containing: STAT perks: 100% 0.0
Thanks for replying, unfortunately this didn't help me. There seems to be no possibility to remove perks other than starting a new character. Oh well. Another reason to start a new playthrough :)
 

Grim

Active Member
Aug 17, 2016
641
477
Thanks for replying, unfortunately this didn't help me. There seems to be no possibility to remove perks other than starting a new character. Oh well. Another reason to start a new playthrough :)
It's good practice to keep multiple saves for situations like this. Then you can roll back to an earlier one instead of having to start over
 

straydogg

Member
May 9, 2017
258
122
WHAT: work_hourly
WHERE: hotel
WHEN: 0 - 24
WHO: none
OTHER: Random(50, 1000) < attractiveness && perversion < Random(0, 100)

SceneStart()
Player(Happy):: "Housekeeper!"
Actor = generatePersonTemporary()
While !Actor.isInterestedIn(Player)
Actor = generatePersonTemporary()
Endwhile
Actor.dress()
Actor:: "Coming!"
Actor.show(2)
Actor(Happy):: "Oh, you must be the housekeeper. Come right in!"
Player(Happy):: "Thank you. This should only take 15 minutes."
Actor.hide()

"I proceeded to clean the room, starting from the bathroom."
"The moment I stepped out of the bathroom to clean the rest of the room though, I was greeted by an interesting sight ..."
Actor.strip()
Actor.show(2)
Player(Embarassed):: "Excuse me ... what are you naked?"
Actor(Flirty):: "You know: You're such a sight to behold - I couldn't help myself. Why don't we have some fun? I'll make it extra worthwhile for you - much more so than earning lousy wages cleaning rooms ..."
0:: perversion > 30:: "Accept"
1:: "Storm off"

If 0
Player(Flirty):: "Oh well, I'm kinda short on money right now ... so I guess it's your lucky day. But don't think I'm the type that does this to all guests."
perversion += Random(0, 1)
Sex(Actor, Player)
money += Random(100, 500)
Actor.show(2)
Player.show(0)
Actor2 = generatePersonTemporary()
While !Actor2.isInterestedIn(Player)
Actor2 = generatePersonTemporary()
Endwhile
Actor2.dress()
Actor2.show(3)
Actor2(Flirty):: "Well, well, well. Having some fun with the housekeeper there, <Actor.name>? All without your roommate!"
Actor(Flirty):: "As always ... you're free to join us ... I'm sure this whore will be okay with it for an extra tip."
0:: "Okay ..."
1:: "No way"

If 0
Player(Embarassed):: "Well ... I've gone this far anyway so ..."
money += Random(100, 500)
Sex(Actor, Player, Actor2)
perversion += Random(0, 1)
Else
Player(Angry):: "No way. I told you I wouldn't do this to just any guest!"
Endif
Else
Actor.hide()
"I stormed off from the pervert's room. Oh god, I really hate my job! Lousy money and creepy guests ..."
masochist -= Random(0, 0.5)
Endif
SceneEnd()
timeout(100, maid_whores)

for ppl trying to mod, take a scene that doesnt work from the 800 that dont fire, and changeit to this.
WHAT: work_hourly
WHERE: all, hotel
WHEN: 0 - 24
WHO: none
OTHER:

SceneStart()
Player(Happy):: "Housekeeper!"
Actor = generatePersonTemporary()
While !Actor.isInterestedIn(Player)
Actor = generatePersonTemporary()
Endwhile
Actor.dress()
Actor:: "Coming!"
Actor.show(2)
Actor(Happy):: "Oh, you must be the housekeeper. Come right in!"
Player(Happy):: "Thank you. This should only take 15 minutes."
Actor.hide()

"I proceeded to clean the room, starting from the bathroom."
"The moment I stepped out of the bathroom to clean the rest of the room though, I was greeted by an interesting sight ..."
Actor.strip()
Actor.show(2)
Player(Embarassed):: "Excuse me ... what are you naked?"
Actor(Flirty):: "You know: You're such a sight to behold - I couldn't help myself. Why don't we have some fun? I'll make it extra worthwhile for you - much more so than earning lousy wages cleaning rooms ..."
0:: perversion > 30:: "Accept"
1:: "Storm off"

If 0
Player(Flirty):: "Oh well, I'm kinda short on money right now ... so I guess it's your lucky day. But don't think I'm the type that does this to all guests."
perversion += Random(0, 1)
Sex(Actor, Player)
money += Random(100, 500)
Actor.show(2)
Player.show(0)
Actor2 = generatePersonTemporary()
While !Actor2.isInterestedIn(Player)
Actor2 = generatePersonTemporary()
Endwhile
Actor2.dress()
Actor2.show(3)
Actor2(Flirty):: "Well, well, well. Having some fun with the housekeeper there, <Actor.name>? All without your roommate!"
Actor(Flirty):: "As always ... you're free to join us ... I'm sure this whore will be okay with it for an extra tip."
0:: "Okay ..."
1:: "No way"

If 0
Player(Embarassed):: "Well ... I've gone this far anyway so ..."
money += Random(100, 500)
Sex(Actor, Player, Actor2)
perversion += Random(0, 1)
Else
Player(Angry):: "No way. I told you I wouldn't do this to just any guest!"
Endif
Else
Actor.hide()
"I stormed off from the pervert's room. Oh god, I really hate my job! Lousy money and creepy guests ..."
masochist -= Random(0, 0.5)
Endif
SceneEnd()
timeout(100, maid_whores) and it will fire when you are working at the hotel and change the time from 0 - 24 to 8 - 16 and it will fire cuz 1000 is like 27 months cuz 270 to 300 is 9 months prego, i play with almost 15 non consent and corruptor scenes taken right out of the game use a scene "temp plate and away ya go, and the scene changes some time you get lucky, some times not and theres a chance of losing that job, i dont accept phone numbers from any one except family or the landlady i use the modding wikki i have and is posted recently, i have 1000 scenses taken from the base game and reworked the to fire at different days and times, my character is so busy i forget to sleep, i have some that i have remade if any one likes they can pm me cuz there are doubles and tripples of some of them and the game will freeze if there are more than one double scenes freeze the game like i said at least 1000 scenes iv reworked or not like i said my character is too busy to take numbers heee
 

Fuzzcat

Active Member
Oct 27, 2017
624
662
Are you able to share/cuckold your wife in this game?
Yes you can.
Cuck or get cucked, share, cuck preggo, etc.
Or you can be the bull, sneaky or requested by another cuck.

I've been playing around most fetishes, and they do work, you just renember to be careful which mods are enabled or the game will connect them.
For example, if you have bestiality enabled along NTR/Netori, the game will trigger a cuck scene with a dog/horse.
So, there are basic NTR/Netori scenes, basic bestiality scenes, and combined NTR/bestiality scenes. Disabling one or the other disables the combination, but not the basic scenes of the fetish you want.

Or just go the absolute perv and enable everything :eek:
(like most of us probably do!)
 
  • Like
Reactions: FruitySakuraBoi

ZTex

Engaged Member
Apr 3, 2019
2,898
4,185
another feature: NPCs do not use furniture with several places, such as sofas - if there is a large sofa in the room, it will be empty, despite 3-4 seats on it
I have not noticed this. I've noticed the opposite where 3-4 npc will try to use the same object.
Usually fine for the bigger sofas but for the smaller desk / exercise stuff it's funny.
 

ririmudev

Member
Dec 15, 2018
304
303
So... the thing is... my file was named lpsene instead of lpscene. :oops:
Gotta remember to take a break and come back with fresh eyes later.
You don't have permission to view the spoiler content. Log in or register now.
Thanks; I saw that a lot of existing scenes don't have initial indentation.
You don't have permission to view the spoiler content. Log in or register now.
Thanks; for me it's the ` key. And yep, intended to add in exchangeContact
Surprised no one else pointed this out to you but your relational operators here are backwords.
Actually, that's the documented way for assigning values; thanks though.

BTW, is there a way to load the game faster? It takes a few seconds to load the sample character on the left side; seems to slow things down when testing.
 

R0y

Member
Nov 25, 2017
371
223
I'm so intrigued by this game that I'm gonna dedicate my website to it. Use my free time to make models to share and learn to mod it. My wish is to be one of the best at it.
Godspeed
Roy
 
3.30 star(s) 117 Votes