lifesuckz69

Member
Mar 5, 2017
373
268
So I guess it is "normal" that any boobsize bigger than a handful clips through clothing and stockings are always clipping through half the leg?
 

GrabberWalkie

Active Member
Jul 9, 2020
835
794
Yeah! This is great! One thing I'm having a bit of an issue with, not sure if this was answered already: characters clip through clothing. On skinnier\ more athletic npcs its not a big issue, but the overweight ones are really annoying. Especially since they seem to be everywhere! Any way to fix this?
 

lifesuckz69

Member
Mar 5, 2017
373
268
Yeah! This is great! One thing I'm having a bit of an issue with, not sure if this was answered already: characters clip through clothing. On skinnier\ more athletic npcs its not a big issue, but the overweight ones are really annoying. Especially since they seem to be everywhere! Any way to fix this?
Sorry, but that was literally just asked by me 2 messages ago and answered 1 message before yours
 

MattShizzle

Well-Known Member
Oct 31, 2019
1,354
1,274
Could use more hair shades. There's not a good light brown one that isn't reddish. Using the RGB code sometimes looks different than it should.
 

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.
 
Aug 8, 2017
389
305
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()
 

GrabberWalkie

Active Member
Jul 9, 2020
835
794
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,274
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
860
1,005
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,274
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,274
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
860
1,005
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, update!
Reactions: Hongfire Survivor

NickkiS

Newbie
Aug 21, 2018
78
168
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
208
209
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:
3.30 star(s) 118 Votes