Vinfamy

creating moddable 3D life simulator
Game Developer
Jul 5, 2017
1,250
4,855
414.jpg

Windows (64-bit):
- - -
Windows (32-bit):
- - - -
Linux:
- - -

Update Only: (requires v4.0 Stable or later)
Windows (64-bit):
- - - -
Windows (32-bit):
- - - -
Linux:
- - - -

Change Log:
- This update focuses on Trans/Futa content. Remember, you can change the percentage of trans NPCs generated by the game in Esc > Beauty Standards & Npc distribution
- New Threesome animations involving Trans (or female wearing strapon) characters to cover some of the combinations that are still missing:
+ Trans Female Female (TFF)
+ Trans Trans Trans (TTT)
+ Male Trans Female (MTF)
- New option in the Finish page of the Character Editor (works for both the player and NPCs you can edit from the Contacts menu) to allow trans/ female characters to use male moans instead and vice versa
- New 'Pitch Multiplier' option under the Moans options above to alter the moans to a higher or lower key for that specific character. Obviously this is potentially useful for all types of characters just for the sake of variety, but is especially useful for trans characters (for example, if you're playing a transwoman and want to emulate the effect of someone born male feminizing their voice via surgery, therapy or practice, you can either still use the female moans but lower the pitch, or choose to use the male moans instead but increase the pitch)
- Add trans option to a few scenes that currently only generate / ask you to select male characters (breeding party, a night with colleagues, etc)
 

xyzman

Newbie
Jul 4, 2019
47
8
A new day, a new noob question :)
The game tells me very often to find a job.
There are some freelancer activities and so my char does not need a regular job.
Can I tell the game to not ask me this again ?
 

GrabberWalkie

Active Member
Jul 9, 2020
836
799
Well, I guess it's nice to have some new animations and the option to call in dickgirls to breeding parties and the like. Kind of expected something more... substantial. :censored:
 
  • Like
Reactions: srg91

Ravenger6660

Active Member
Sep 14, 2017
862
1,010
Can someone please give me an idiots guide to make the cumflation happen? Ive clicked around a bit and cant for the life of me make it happen. NPC/Relatives whichever. Thanks :)
this is a good piece of code that work for cumflation scene.

Code:
    Exit = false
    While !Exit
        Fill += 0.2
        Fill2 += 0.2
        filter(vaginal)
        Sex(Player, Actor)
        If player.isfemale() && !Actor.isfemale() && !wasCondomUsedDuringLastSex()
            Player.setMorphValue(Genesis8Female__PBMPregnant, Fill2)
        Elseif !Player.isfemale && !Actor.ismale() && !wasCondomUsedDuringLastSex()
            Actor.setMorphValue(Genesis8Female__PBMPregnant, Fill)
        Endif   
        "Should I fuck <Actor.name> again?"
        0:: "Yes"
        1:: "No"
                    
        If 1                 
            Exit = true
        Endif   
    Endwhile
    "Some text about being filled to brim"
    Actor.setMorphValue(Genesis8Female__PBMPregnant, 0)
    Player.setMorphValue(Genesis8Female__PBMPregnant, 0)
 

trynremember

Newbie
Nov 21, 2019
20
19
this is a good piece of code that work for cumflation scene.

Code:
    Exit = false
    While !Exit
        Fill += 0.2
        Fill2 += 0.2
        filter(vaginal)
        Sex(Player, Actor)
        If player.isfemale() && !Actor.isfemale() && !wasCondomUsedDuringLastSex()
            Player.setMorphValue(Genesis8Female__PBMPregnant, Fill2)
        Elseif !Player.isfemale && !Actor.ismale() && !wasCondomUsedDuringLastSex()
            Actor.setMorphValue(Genesis8Female__PBMPregnant, Fill)
        Endif
        "Should I fuck <Actor.name> again?"
        0:: "Yes"
        1:: "No"
                 
        If 1              
            Exit = true
        Endif
    Endwhile
    "Some text about being filled to brim"
    Actor.setMorphValue(Genesis8Female__PBMPregnant, 0)
    Player.setMorphValue(Genesis8Female__PBMPregnant, 0)
If there is any way to perma set the cum covered on skin we get in the sex scenes that would make it perfect (I think there is vaginal, facial and anal cum).
 

redharvest1

Well-Known Member
Jun 7, 2019
1,081
3,593
A new day, a new noob question :)
The game tells me very often to find a job.
There are some freelancer activities and so my char does not need a regular job.
Can I tell the game to not ask me this again ?
iirc it'll quit popping that up after a week or so in game time. I agree it can be highly annoying but then again there's a lot of game content tied to a character's job.
 
  • Like
Reactions: GrabberWalkie

Ghostface Reborn

Engaged Member
Sep 12, 2018
3,916
2,243
Yeah. like I don't see what a transwoman can't do the same actions as the male or even a woman with a strap tbh. The male animations seems like the have a lot of detail in them but I don't want to play as one. It's a shame really. The basically one thing that I don't like in this otherwise good game.
sill the same?
 

Tarrang

Member
Oct 13, 2021
306
331
You can also turn the whole futa/trans (it's futa) off. Real trans would be (for post trans) the transed into sex with fertility 0. So the voice thing should be for all sexes in game.
 

larsV

Member
Jan 13, 2018
203
70
A new day, a new noob question :)
The game tells me very often to find a job.
There are some freelancer activities and so my char does not need a regular job.
Can I tell the game to not ask me this again ?
you can send him to university or hospital for job that doesn`t make you work all day (btw if go to uni ,you can pick student or teacher)
 

tom54321

Newbie
May 6, 2020
98
81
Are there any plans to incorporate some/all of the best/popular mods directly into the main game files without having to go find them and download them separately? I know it has been done in the past for a few but I don't think I've seen any new mods added to the main game files in a while.
 
  • Like
Reactions: GrabberWalkie

princeofpoon

Newbie
Oct 14, 2018
66
116
this is a good piece of code that work for cumflation scene.

Code:
    Exit = false
    While !Exit
        Fill += 0.2
        Fill2 += 0.2
        filter(vaginal)
        Sex(Player, Actor)
        If player.isfemale() && !Actor.isfemale() && !wasCondomUsedDuringLastSex()
            Player.setMorphValue(Genesis8Female__PBMPregnant, Fill2)
        Elseif !Player.isfemale && !Actor.ismale() && !wasCondomUsedDuringLastSex()
            Actor.setMorphValue(Genesis8Female__PBMPregnant, Fill)
        Endif  
        "Should I fuck <Actor.name> again?"
        0:: "Yes"
        1:: "No"
                   
        If 1                
            Exit = true
        Endif  
    Endwhile
    "Some text about being filled to brim"
    Actor.setMorphValue(Genesis8Female__PBMPregnant, 0)
    Player.setMorphValue(Genesis8Female__PBMPregnant, 0)
Thanks for the reply, though I think you vastly overestimate my knowledge of this, hehe. I understand the code (as in what it makes happen), but what do I do with it/where do I put it etc? Like I said, talk to my like I'm a complete moron with this.....cause I am XD
 
3.30 star(s) 118 Votes