Satyr90

Member
Dec 23, 2020
287
192
So, If I use a setActorVar for a specific person like a dating relationship or marriage, then in the game if the person breaks up and ends that relationship with that person, then naturally the scene wouldn't work because any NEW BF/GF or wife/husband(dating/marriage) would comeback as (getActorVar) as 0.

HOWEVER If the MC gets back together with the ex will the scenes start back up again? Will the original setActorVar number and tag report as they did before the breakup seeing as the relationship is now restored? Or will the getActorVar report a 0? Does the setActorVar/getActorVar get erased when the relationship ends?
 

Icebird

Member
Sep 22, 2017
379
274
So, If I use a setActorVar for a specific person like a dating relationship or marriage, then in the game if the person breaks up and ends that relationship with that person, then naturally the scene wouldn't work because any NEW BF/GF or wife/husband(dating/marriage) would comeback as (getActorVar) as 0.

HOWEVER If the MC gets back together with the ex will the scenes start back up again? Will the original setActorVar number and tag report as they did before the breakup seeing as the relationship is now restored? Or will the getActorVar report a 0? Does the setActorVar/getActorVar get erased when the relationship ends?
You also use the 'modifyActorVar' in your work somewhere? Tried the 'saveAndDelete' command before the end of the scene or the related phase (sometimes its working)? Also if characters are temporary (generated) you may need 'makePermanent' before to set remaining variables. As i know the game has some special limitation around relationships. For example your dad and your mom cannot married each other, etc.
 

Vinfamy

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

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

Change Log:
This is the second of the five updates making up the v4.0 Variety and Polish Overhaul. Following on from Beta 1, Beta 2 will continue focusing on Variety of Characters, before we move on to clothes in Beta 3 (so if you see a lot of cloth clipping this update, it's to be expected because new chracter morphs were added and clothes haven't been worked on yet. Don't worry, pretty much all the clothes will be replaced in Beta 3 & 4).
- Improve the eyes' textures and shaders for a more realistic look that matches the quality of the rest of the face
- Eye color is now clearly noticeable and completely customizable (not just the game picking from 3 equally dark colors like before)
- Under Character Editor > Skin, 25 sets of bikini tan lines to choose from for female characters, plus a slider to adjust how noticeable they are
- Another "Step" for the new Morphs > Visual Mode, which highlights the most essential morphs (scale, position, rotate, etc) for each major facial feature (eyes, nose, chin, etc) to give you more control after you've done the first step of blending full face presets together.
- Expand the NPC generation algorithms to make use of all the new customization options added in Beta 1 & 2, with special attention to:
-- Generating NPCs with realistic but distinct looks
-- Generating NPCs from different ethnicities
-- Generating NPCs of different ages
-- Generating fantasy NPCs
-- Giving NPCs appropriate fitness and muscle stats in accordance to their body
-- The attractiveness stat (see below)
- All patrons' commissions for April
(The last two bullet points are very complex to implement and are simply introduced in Beta 2 at a basic level, far from finished. The data and logic involved will continue being worked on and fine-tuned in Beta 3, 4 & Final too)
- Expand the "Esc > Customize NPC Distribution" menu into "NPC Distribution & Beauty Standards", where you can indicate how appealing different body types, face shapes, age groups, ethnic features, etc are for each gender (up to you if you want to be objective, or use this menu to set up your player character's preferences). The default settings use conventional beauty standards and my own taste.
- In the same menu, you can now set the "NPC Average Attractiveness" for each gender, default: 50 for male, 75 for female. The game will then generate NPCs with the attractiveness stats averaging into this and try to make their actual look justify their attractiveness stat in accordance with your beauty standards above.
 

Ravenger6660

Active Member
Sep 14, 2017
852
996
Ravenger, are the player gains in the scene Private_Workout supposed to be that high? +5 fitness, attraction, muscle & fertility seems a little bit excessive.

Although might just be me liking to take stuff like that slowly.
A lot of people complain that player stat loss overtime is greater than stat gain doing workouts.
Alsothe stat gain not just for player but for npc as well, which is something very hard to build up.
Fitness is the variable used for energy in sex scene.
 

almostideal

Member
May 12, 2020
196
194
A lot of people complain that player stat loss overtime is greater than stat gain doing workouts.
Alsothe stat gain not just for player but for npc as well, which is something very hard to build up.
Fitness is the variable used for energy in sex scene.
I've never had that problem, to be perfectly honest (although I don't mind it effecting NPCs because they aren't me). It's just being able to hit all of your fitness & attractiveness achievements over the course of a day seems a little easy. I'll adjust it to my liking though.
 
  • Like
Reactions: Ravenger6660

Ravenger6660

Active Member
Sep 14, 2017
852
996
So, If I use a setActorVar for a specific person like a dating relationship or marriage, then in the game if the person breaks up and ends that relationship with that person, then naturally the scene wouldn't work because any NEW BF/GF or wife/husband(dating/marriage) would comeback as (getActorVar) as 0.

HOWEVER If the MC gets back together with the ex will the scenes start back up again? Will the original setActorVar number and tag report as they did before the breakup seeing as the relationship is now restored? Or will the getActorVar report a 0? Does the setActorVar/getActorVar get erased when the relationship ends?
If the scene opens:
WHO: Dating = getSpecific(Dating);
Then that person you broke up with will never be called for that scene.

If the scene opens:
Actor = getPerson(tag_maid)
Then who ever has that tag will show up.

Check out my maid mod of inspiration.
 

Satyr90

Member
Dec 23, 2020
287
192
If the scene opens:
WHO: Dating = getSpecific(Dating);
Then that person you broke up with will never be called for that scene.

If the scene opens:
Actor = getPerson(tag_maid)
Then who ever has that tag will show up.

Check out my maid mod of inspiration.
I think I may have explained it wrong. In the scene "boss_asks_cms" as an example if you set the specific actor (dating) to setActorVar(sharedboss, 1) then the next time that scene loads you'll get a different scene with the boss and your GF having sex. However, what if you break up with that girlfriend? will that erase that ActorVar? SO if you break up with her and get back together will it start with sharedboss = 1 or will it = 0? If the dating system has nothing to do with the ActorVar then I'm going to guess it =1 however I've been wrong before and I just wanted to cover my ass.
 

Ravenger6660

Active Member
Sep 14, 2017
852
996
I think I may have explained it wrong. In the scene "boss_asks_cms" as an example if you set the specific actor (dating) to setActorVar(sharedboss, 1) then the next time that scene loads you'll get a different scene with the boss and your GF having sex. However, what if you break up with that girlfriend? will that erase that ActorVar? SO if you break up with her and get back together will it start with sharedboss = 1 or will it = 0? If the dating system has nothing to do with the ActorVar then I'm going to guess it =1 however I've been wrong before and I just wanted to cover my ass.
ActorVar(sharedboss, 1) would not change, it would remain sharedboss = 1.
 
  • Like
Reactions: Satyr90

Ross_69

Member
Feb 2, 2019
147
123
Do I understand right that the Real Face Import is actually just for skin texture? And all the shaping you'd have to do yourself?

That's kinda useless tbh. Skin isn't that important, the right shape is what's difficult to do.
 

Medievalover

Obsessed with thicc women!
Modder
Oct 18, 2020
474
7,483
Do I understand right that the Real Face Import is actually just for skin texture? And all the shaping you'd have to do yourself?

That's kinda useless tbh. Skin isn't that important, the right shape is what's difficult to do.
By using skin textures, you can achieve more realistic face assets, but to make your character looks like your reference or imagination, you have to change all the features.
These textures make each character more unique. Of course, achieve the right shape requires a little patience, but you can use presets already made and change them! :)
 
Jul 17, 2018
373
166
Can't wait to try the new version. I'm still on 3.21 and wondering why the MCs acquaintances are so ugly, and the MCs daughters are gorgeous.
 

Candy1970

Well-Known Member
Jan 14, 2018
1,647
1,707
the collides are broken , sex half way in the floor or through the walls ,clothed fucking ......
 

havenh

New Member
Apr 2, 2021
7
1
My mod does not mess with condoms. I think that would be setting.
Does the issue trigger without my mod?

Does player character have/bought condom?
And if npc perversion is high they will refuse to use condoms.

Also if npc or character "wants a baby" or is pregant condom use is disabled. That is just how game works. There are some of my scenes that make npcs want babies.
Sorry for the late reply, the issue does not trigger on the base game (4.0 beta 1 ), I tested with the same settings on vanilla and with ravenger_scenes installed.
Both new games, 30 condoms in inventory. In vanilla I can both put on condom, and ask the actor to put one one (which they can indeed refuse). With only your mod, I no longer have the option to do either. The scenes were both times as "whoring myself" in a brothel. I was also playing a shemale both times, if that matters.
 

Satyr90

Member
Dec 23, 2020
287
192
Another question for the community

If I use the command "makeInterested" in a scene, on a gay male actor for example, and while in that situation he's with a woman. Will that command turn him bisexual or completely straight? Will the "makeInterested" command simply add the woman to his sexual orientation or will it remove/erase the male one as well? I'm just curious.
 

Ross_69

Member
Feb 2, 2019
147
123
By using skin textures, you can achieve more realistic face assets, but to make your character looks like your reference or imagination, you have to change all the features.
These textures make each character more unique. Of course, achieve the right shape requires a little patience, but you can use presets already made and change them! :)
I think this feature should be called Real Skin Import then, Real Face Import is pretty misleading as you aren't actually importing faces. I wouldn't play around with 3+ programs for few hours if I knew it's actually only skin.

Was doubly dissapointing since FaceGen Artist did actually generate a great face. But then it's actually just skin.
 
3.30 star(s) 118 Votes