GrabberWalkie

Active Member
Jul 9, 2020
809
739
New version, new scene tweaks.

v1.2 Changelog:
  • Overall:
    • Reupload with fixed line endings
  • vin_Base:
    • nude_draw_cms:
      • Rework actor generation and pronouns to support a transwoman art teacher.
    • show_npc_porn_cms:
      • Opened previously ciswomen only roles to transwomen.
      • Move NonCon check under the straight/lesbian decision.
    • sucked_by_vampire_cms:
      • Hoist sucked test up a level so the initial branch works.
  • vin_Bestiality:
    • catch_neighbour_cms:
      • Change gender conditions to allow transwomen.
      • Attempt to grab an existing neighbour first, then make new ones.
      • Hardcode Actor2 some stats to make sure it doesn't hate everything.
    • gf_suggests_cms:
      • Swap ciswomen-only conditions to allow transwomen.
      • Make a random check easier to always succeed.
    • undercover_cop_cms:
      • Player.isFemale() -> !Player.isMale()
What does 'cms' mean? I keep seeing this in pose titles, but can't understand what it is.
Also, does this mean that vampires now have something to do other than just being a cosmetic option?
 

MattShizzle

Well-Known Member
Oct 31, 2019
1,354
1,275
What does 'cms' mean? I keep seeing this in pose titles, but can't understand what it is.
Also, does this mean that vampires now have something to do other than just being a cosmetic option?
It's used in scenes/positions/etc someone suggested rather than the ones Vinfamy came up with completely on his own.
 

Ravenger6660

Active Member
Sep 14, 2017
841
977
New version, new scene tweaks.

v1.2 Changelog:
  • Overall:
    • Reupload with fixed line endings
  • vin_Base:
    • nude_draw_cms:
      • Rework actor generation and pronouns to support a transwoman art teacher.
    • show_npc_porn_cms:
      • Opened previously ciswomen only roles to transwomen.
      • Move NonCon check under the straight/lesbian decision.
    • sucked_by_vampire_cms:
      • Hoist sucked test up a level so the initial branch works.
  • vin_Bestiality:
    • catch_neighbour_cms:
      • Change gender conditions to allow transwomen.
      • Attempt to grab an existing neighbour first, then make new ones.
      • Hardcode Actor2 some stats to make sure it doesn't hate everything.
    • gf_suggests_cms:
      • Swap ciswomen-only conditions to allow transwomen.
      • Make a random check easier to always succeed.
    • undercover_cop_cms:
      • Player.isFemale() -> !Player.isMale()
Just sharing my version of sucked_by_vampire_cms with you.
Code:
WHAT: all
WHERE: all
WHEN: 0 - 24
WHO: Actor = getCompanion(); If Actor.isRace(Vampire)
OTHER: none

    SceneStart()
    "I know <Actor.name> is a vampire, and it's not hard to tell <Actor.he_or_she> is currently thristy for blood ... my blood"
    If masochist - Actor:masochist > 50
        "And for some reason, I just can't seem to say no ..."
        Sucked = true
    Else
        "Should I let <Actor.him_or_her>? -Warning! Possibility of turning into vampire if your human-"
        0:: "Yes"
        1:: "No"
        
        If 0
            Sucked = true
        Else
            Sucked = false
        Endif
    Endif
    If Sucked
        masochist += 2
        animatePair(Actor, Player, Kissing)
        If Player.isRace(vampire)
            "<Actor.name> drank Vampire blood and feels stronger."
            energy -= 25
            Actor:fitness += 10
        Elseif Player.isRace(Elf)
            Actor():: "Yummy Elf blood that's the good stuff. I think I'm starting to look better"
            energy -= 25
            Actor:attractiveness += 10
        Elseif Player.isRace(Orc)
            Actor():: "Gross orc blood is just the worst. I feel like fucking something now."
            energy -= 25
            Actor:fertility_npc += 5
        Else
            Actor():: "That's some yummy blood, enough to keep my energy level up for a while."
            energy -= 25
            If Random(5, 15) > energy
                Player.blendPreset(vampire)
                Player.dress()
                Player.show()
                "Oops, I was turned into a vampire."
            Endif   
        Endif
        "Sensing my receptiveness to the whole situation, <Actor.name> didn't hesistate anymore for the blood <Actor.he_or_she> has been craving ..."
    Endif

    SceneEnd()
    timeoutActor(200, sucked_by_vampire_cms, Actor)
    timeout(100, sucked_by_vampire_cms)
 
  • Like
Reactions: rcbcgreenpanzer

Sikirash

Newbie
Oct 3, 2018
69
95
Who else thinks eyes are too bright now? Too freaky for my taste....like they are from Underworld movies ,lol. And no variety. Orcs have green and elves almost all have blue ones :/
Fantasy races also need some appearance tweaks, especially orcs. They look like they fell from airplane on the face..
 

MattShizzle

Well-Known Member
Oct 31, 2019
1,354
1,275
Who else thinks eyes are too bright now? Too freaky for my taste....like they are from Underworld movies ,lol. And no variety. Orcs have green and elves almost all have blue ones :/
Fantasy races also need some appearance tweaks, especially orcs. They look like they fell from airplane on the face..

Agreed on the first part. I don't use fantasy races. But yeah, the eyes are bright AF, kind of scary looking.
 

MattShizzle

Well-Known Member
Oct 31, 2019
1,354
1,275
Slowly getting the hang of the facegen thing. It's amazing how hard it is to find a pic that works. So many the face comes out in all different colors because of the lighting, etc. Or they are looking the wrong way, smiling with teeth, have their head too tilted, something in front of their face, etc. Or it just no matter how hard you try it doesn't accept how you did it. The lighting thing is almost impossible if the person isn't white. It seems set up for if you actually had a studio and a setup to take pics with a certain lighting, like for a professional photographer. Too bad there isn't (that I know of) a site that has pics set up for that sort of thing, even if not of celebs.
 
Last edited:

makaya

Newbie
Nov 2, 2018
15
3
This has probably been asked/suggested before but is there a mod that will make the end pregnancy and the pregnancy announcements events fire untill none are left for that day? I use 1 cheat save file to basically impregnate as many as i can and it's a pain to end the pregnancies 1 by 1 through another mod i found on here which also seems to have the side effect of leaving the child motherless(as in the child doesn't have a mother in contacts) and that mod also doesn't work for the announcements. I don't care that i'd have to sit through 15 announcements each night i just want them to happen ...
I've tried to mess around with the files that manage labour but i'm probably missing something to make it work or it's impossible by just changing the text files.
To continue on this i've been trying to figure out where the scenes get triggered from figuring i might be able to fiddle with that file to get the behaviour i want but i'm having absolutely no luck finding it. Anyone more familiar with modding this game who can tell me how the birth and pregnancy discover scenes get triggered and from what file?
 

Ravenger6660

Active Member
Sep 14, 2017
841
977
To continue on this i've been trying to figure out where the scenes get triggered from figuring i might be able to fiddle with that file to get the behaviour i want but i'm having absolutely no luck finding it. Anyone more familiar with modding this game who can tell me how the birth and pregnancy discover scenes get triggered and from what file?
The main problem is that is it checks pregnancy status at midnight. But when you have a lot of backlog character that are pregnant this causes a problem. Fortunately I found a solution.

NPC_gives_birth_neutral_extra
NPC_gives_birth_exrtra
NPC_discovers_pregnancy_Extra

These added scene fire off if:
Days = Actor.countPregnancyDays()
If Days > 279

And fix a of problems.
 
Last edited:
  • Yay, new update!
Reactions: Hongfire Survivor

NickkiS

Newbie
Aug 21, 2018
76
166
Slowly getting the hang of the facegen thing. It's amazing how hard it is to find a pic that works. So many the face comes out in all different colors because of the lighting, etc. Or they are looking the wrong way, smiling with teeth, have their head too tilted, something in front of their face, etc. Or it just no matter how hard you try it doesn't accept how you did it. The lighting thing is almost impossible if the person isn't white. It seems set up for if you actually had a studio and a setup to take pics with a certain lighting, like for a professional photographer. Too bad there isn't (that I know of) a site that has pics set up for that sort of thing, even if not of celebs.
This is a general piece of advice for anyone using facegen; I brought it quite a while ago to use it for my Daz Studio work and I've never been happy with any of the results I achieved. So don't expect miracles because this entry level software isn't capable of delivering them.
 

almostideal

Member
May 12, 2020
180
161
Slowly getting the hang of the facegen thing. It's amazing how hard it is to find a pic that works. So many the face comes out in all different colors because of the lighting, etc. Or they are looking the wrong way, smiling with teeth, have their head too tilted, something in front of their face, etc. Or it just no matter how hard you try it doesn't accept how you did it. The lighting thing is almost impossible if the person isn't white. It seems set up for if you actually had a studio and a setup to take pics with a certain lighting, like for a professional photographer. Too bad there isn't (that I know of) a site that has pics set up for that sort of thing, even if not of celebs.
For generic faces you can try which has a selection of computer generated photos. Most of them aren't astoundingly beautiful or anything like that but they work well with facegen. There's also which does the same kind of thing, making people using AI. They're both pretty good for when you just want "generic white guy #1" or something like that.
 
Last edited:

MattShizzle

Well-Known Member
Oct 31, 2019
1,354
1,275
For generic faces you can try which has a selection of computer generated photos. Most of them aren't astoundingly beautiful or anything like that but they work well with facegen. There's also which does the same kind of thing, making people using AI. They're both pretty good for when you just want "generic white guy #1" or something like that.
Unfortunately, the first one seems to be the same ones every time, far too many smiling showing teeth (unusable) and none of like 17-21 age. To make random any category requires paying. 2nd doesn't let you pick sex, age, ethnicity, etc at all. And a lot showing teeth there, too.
 

almostideal

Member
May 12, 2020
180
161
Unfortunately, the first one seems to be the same ones every time, far too many smiling showing teeth (unusable) and none of like 17-21 age. To make random any category requires paying. 2nd doesn't let you pick sex, age, ethnicity, etc at all. And a lot showing teeth there, too.
In generated photos you can change the emotion to neutral and it doesn't cost anything to change the categories.

Edit: Also as far as teeth go, it's more of a guideline than a rule, 90% of the time I think the teeth are too big and they aren't. You can't really tell until you've actually checked.
 

MattShizzle

Well-Known Member
Oct 31, 2019
1,354
1,275
I thought showing teeth at all was a no go? Can change the categories but STILL the same pics in the same category.
 

almostideal

Member
May 12, 2020
180
161
I thought showing teeth at all was a no go? Can change the categories but STILL the same pics in the same category.
It's not a no-go, more a try to avoid. It takes about two minutes to check pics out so it's worth it if you're not sure. I've had some pics that I thought would be terrible and worked fine and some I thought would work and were terrible.
 

MattShizzle

Well-Known Member
Oct 31, 2019
1,354
1,275
Also, the ages are bad. YA is like 25 at youngest and next youngest is "child" Which is like 8 at most. No "teen." Or hell, even like 12-15 if someone wanted that. The "This person does not exist" is useless as you can't pick ANYTHING - not age, gender, etc. Wish there was one that only had women like 16-23. 16 is Age of Consent where I live. 18-23 would be fine, too. But YA should not be late 20s or 30s. Adult should be 20s and 30s, not 50s/60s. It's messed up.
 
May 5, 2019
21
27
Really would like to see some gameplay revamps and additions. There's little to work for and there's still a lot of jankness and emptiness in terms of actual Life Simming.
 

straydogg

Member
May 9, 2017
260
123
Also, the ages are bad. YA is like 25 at youngest and next youngest is "child" Which is like 8 at most. No "teen." Or hell, even like 12-15 if someone wanted that. The "This person does not exist" is useless as you can't pick ANYTHING - not age, gender, etc. Wish there was one that only had women like 16-23. 16 is Age of Consent where I live. 18-23 would be fine, too. But YA should not be late 20s or 30s. Adult should be 20s and 30s, not 50s/60s. It's messed up.
to get ages you have to change ALL of the templates in the game, the characters, male, female and the Daz characters cuz like in better preg the nurse looks like a bone rack, [and shes 79:eek: yrs old] the ppl are ugly as hell they ALL have to be changed, i can have up to 25 yrs of age as the oldest and 18 as youngest and thats what i get is 18 to 25 if i want older i just change the file to what ever age older than 25 the character generates from the Presets thats why they are called Presets i just took the presets and replaced the stats and the body with one that i created,created about 5 different male and female models and replaced the whole Preset in base ,just leave the names the same but change every thing else. and if ya havent cleaned lifeplay in owners app data or the 420 engine files All those files are the old files and they MUST be cleaned out so you run a clean game or it runs the saved scripts and not the new game scripts in the character set up there a box that has all the templates that the game uses to create a character, just click on them and you will see how scarry most of them are, the beauty expansion presets are the worst, the nurses are in the70 to 80 yr old end and look like bone rack hags, and most of the others would Scare the cum out of ya i guess the person who created the characters liked really ugly and old as dust women even the girls gone wild characters are not all tha cute, so until they are changed by your own self, or someone else does it and uploads it to here you will get mostly ugly males and females the Nubian and Germanic nose is the worst, causing the nose to be bigger than the face at most times, so unless you change them, to what you want them to look like ya will just have to put up with it or do a lot of copy and pastin to create yur own character templates as i did and it runs and generates what i like in Tran, female and male looks, Oh and if ya want to generate " high end " ppl just add the Stats list to the character you want , and save it to thePreset and it will generate the stats and better ones to the rest of the generated ppl that you meet in the game.....
 
Last edited:

almostideal

Member
May 12, 2020
180
161
The main problem is that is it checks pregnancy status at midnight. But when you have a lot of backlog character that are pregnant this causes a problem. Fortunately I found a solution.

NPC_gives_birth_neutral_extra
NPC_gives_birth_exrtra
NPC_discovers_pregnancy_Extra

These added scene fire off if:
Days = Actor.countPregnancyDays()
If Days > 279

And fix a of problems.
I'm 99% sure it's from this but I had the following situation happen. I got the "You've got me pregnant" event happen during work, however my character is female.

Edit: I ran it through again and it's always picking the partner of the person I had sex with during my last instance of the gym_spot_cms scene (when you spot the couple in the gym).
 
Last edited:
3.30 star(s) 118 Votes