Tomoushie

Active Member
Aug 18, 2017
553
1,500
In which folder is the file where you can change the minimum height of a character? I would like to make a character small in height.
 
Last edited:

DurtiiBoii

Newbie
Aug 26, 2017
25
32
lifeplay sure does take rap music to a whole new meaning, although it is fitting because listening to rap music is bad for your ears.
 

STNeish

Member
Mar 20, 2020
266
374
Ok, I've been struggling with this one for a while now. I've attached a little pic of the face. I want to see if anyone can identify her.
The idea here is, if she's recognizable, I'm probably done struggling with it. If not... then I'll need to figure out what I'm not quite getting right.
I should say, the hair won't be all that accurate. The actual person has marvelously curly hair.
Anyway, I'm just seeking some feedback.

Mystery Woman.jpg
 

Icebird

Member
Sep 22, 2017
379
275
Thanks a lot, good to know. I tried a lot more other things too and was a bit frustrated...

I am aware that it is risky to make changes to a player's basic characteristics. Part of the mod I'm writing right now is about mind control, basically it's about cuckolding where the player is increasingly manipulated, oppressed and exploited. Certain changes are of course necessary for this (if a player is not interested in such scenarios, he will hate my mod anyway and will not install it).

So I'm considering creating a random character based on the player, assigning it a global ID and making it permanent. At the end of my story, the player could thus have the choice to wake up from a nightmare and restore their original character. But I don't yet know exactly how I can implement this technically, since I need the corresponding lpcharacter file for a renewed blending. In the mod itself, however, I cannot access the data from ...\saves. Also, I don't know what number this created character is saved under, especially since it's different for every player..

In any case, I will point out in the mod description that it makes sense to create a backup of the mc character file ;)

Lastly, I use notepad++ with RK's syntax highlighter. Without it I would be hopelessly lost :)
I suggest try with the cloneFrom command (like this: CloneActor.cloneFrom(Player) ). But you cannot switch between characters, only can make a copy from Player (because I don't think it is working: Player.cloneFrom(CloneActor) but noone knows). When try reversing the things seems you only/maybe can use loadpresets and/or blendpresets from the clone, the earned stats and changes should remain the actual values. Also this concept still risky even if it's works...
Or maybe plan your scripts with both player and the clonedplayer and keep player invisible (hide) and act with the clone within the script...
And maybe study the tfgame (transformation game) parts of the game, how the dev implemented the transformation of the player character...
 

droggu

New Member
Dec 14, 2017
9
11
If the MC has an ejaculation, a game fatal error occurs . This game crash is not a bug, this is a feature :p
I wish he'd hotfix this, it's impossible to play the game and impregnate someone. I don't wanna have to reinstall the game
 

Hongfire Survivor

Active Member
Mar 28, 2020
660
1,612
If the MC has an ejaculation, a game fatal error occurs . This game crash is not a bug, this is a feature :p
I wish he'd hotfix this, it's impossible to play the game and impregnate someone. I don't wanna have to reinstall the game
The game can be buggy, but that sounds like something else is going on. What mods do you have installed?

I knocked up dozens of women yesterday, with no CTD. Is it consistent? Does it happen on a non-modded LifePlay?
 

jackthrowaway556

New Member
Sep 30, 2022
12
7
I use the unofficial uncensor patch:oops:
That shouldn't matter. I've done a mix of fresh install and upgrades, with and without the uncensor patch, and it's not doing that to me. I recommend a fresh install, then copy your scenes over without overwriting. Or using the in-game mod list to make sure you get everything moved over.

It's also possible you only partially upgraded, and didn't overwrite the engine and BP files?
 

Kassan06969

Well-Known Member
Apr 14, 2022
1,679
2,466
It seems to happen in the middle of any sex scene where the MC is a bisexual female and not in any sex scenes with heterosexual MCs. Not sure with bisexual males or homosexual either.
 

larsV

Member
Jan 13, 2018
203
70
okay my own question,before i came mayor,i had taken a job as bartender in a pub,now everytime i go to city hall,i can do that bartender job there,is there a way,to quit that job? i went to the pub where i took the job but i can`t find any option to quit the job (btw it is nothing enoying but was wondering)
 
  • Sad
Reactions: Kassan06969

STNeish

Member
Mar 20, 2020
266
374
Since the update, I've been getting an error when in the nightclub. The game freezes for a few seconds, then tells me there was an error... but the message disappears before I can read it. Is there an error log somewhere, so I can determine what the error is?
 

xsmaks

Newbie
Jul 18, 2022
67
54
I suggest try with the cloneFrom command (like this: CloneActor.cloneFrom(Player) ). But you cannot switch between characters, only can make a copy from Player (because I don't think it is working: Player.cloneFrom(CloneActor) but noone knows). When try reversing the things seems you only/maybe can use loadpresets and/or blendpresets from the clone, the earned stats and changes should remain the actual values. Also this concept still risky even if it's works...
Or maybe plan your scripts with both player and the clonedplayer and keep player invisible (hide) and act with the clone within the script...
And maybe study the tfgame (transformation game) parts of the game, how the dev implemented the transformation of the player character...
I hoped the clone would be the solution I looked for for making a backup of Player. But it seems creating a Players clone doesn't work... I tried (the indentations aren't shown here, but of course i made them):

Player.hide()
If Player.isMale()
PlayerTwin = generatePerson()
While !PlayerTwin.isMale()
PlayerTwin = generatePerson()
EndWhile
ElseIf Player.isFemale()
PlayerTwin = generatePerson()
While !PlayerTwin.isFemale()
PlayerTwin = generatePerson()
EndWhile
ElseIf Player.isTrans()
PlayerTwin = generatePerson()
While !PlayerTwin.isTrans()
PlayerTwin = generatePerson()
EndWhile
EndIf
PlayerTwin.cloneFrom(Player)

Didn't work, while same scene only with an actor instead of Player worked fine:

Player.hide()
Actor = getSpecific(Dating)
If Actor.isMale()
PlayerTwin = generatePerson()
While !PlayerTwin.isMale()
PlayerTwin = generatePerson()
EndWhile
ElseIf Actor.isFemale()
PlayerTwin = generatePerson()
While !PlayerTwin.isFemale()
PlayerTwin = generatePerson()
EndWhile
ElseIf Actor.isTrans()
PlayerTwin = generatePerson()
While !PlayerTwin.isTrans()
PlayerTwin = generatePerson()
EndWhile
EndIf
PlayerTwin.cloneFrom(Actor)
I also tried:
PlayerTwin = PlayerTwin.cloneFrom(Player) //Doesn't work. Nothing happens
PlayerTwin = generatePerson(cloneFrom(Player)) //Doesn't work. Clones the last person from my contact list but with other stats

I searched all files in Modules, but didn't find any file where 'cloneFrom(Player)' is used (only 'cloneFrom(Actor)'). So that idea seems to be a dead end :cry:

Thanks a lot again.
 
  • Sad
Reactions: Icebird
3.30 star(s) 118 Votes