Last69!
Member
- Oct 11, 2023
- 253
- 976
Think so. Was so weird basically no matter what action I did it was always Monday early morning.Did you save during the tutorial? I think someone mentioned a bug with that earlier.
Think so. Was so weird basically no matter what action I did it was always Monday early morning.Did you save during the tutorial? I think someone mentioned a bug with that earlier.
Yeah, always skip the tutorial even Verns was a killerThink so. Was so weird basically no matter what action I did it was always Monday early morning.
The problem is the game will gravitate toward 100 happiness every day. And they cant gain love without interacting with you. This is compound by their opinion toward Friday/Weekends/Monday. (They'll lost more happiness if they hate these)I noticed two issues with the most recent release. The first may be intentional, but it's a mood killer ... 1) As the days progress, all the NPC girls (girls you have not engaged with on the street or in stores) become angrier (happiness decreases to '0') making them all look like they're about to kill you if you approach. For me, it's a mood killer. I fixed this in my game by changing the min and max happiness stats in major_game_classes.character_related.person.ren
I got URM after I read your suggestion but some things I can't seem to find with it.Use URM. It's easier.
Officially declaring them a slave doesn't affect that, but high obedience does. I've occasionally done a thing where I give employees Pay Cut punishments until they're working for $0.00. The lower their obedience, the more you have to pay them to avoid them deciding to quit. I think someone said 250 Obedience is the threshold at which they'll accept working for free, but I can't find that comment anymore. It definitely works at 290, though. So you can effectively make them a slave that works for free by raising their obedience, it's just not as simple as putting the collar on them in your dungeon. And it requires some luck (unless you have that one policy), because you need infractions. If you try to cut their pay for a negative Performance Review, it seems like the game doesn't check Obedience in that instance, so they just quit.It's not that they'll work for me for free at the company, or that they'll stop asking me for pay raises...
You can add cum in SD_PromptBuilder_ren.pyRegarding the GenAI mod:
Any info on how to add "listeners" so I can have it corelate with pubic styles and cum layers? The model I was testing has these features and while I can use append for "Trimmed body hair" per npc, that wouldn't work for something situational like cum layers.
Also would like to adjust some verbiage like "aged 41" to something like "age 41" or "41 years old" as the term "aged" seems to make most look older then their age even if they are "aged 24". Currently use append to say "looks younger" to compensate.
if upper_clothing != None:
upper_color = get_clothing_color_name(upper_clothing)
upper_color_desc = f"{upper_color} " if upper_color else ""
upper_clothing_description = f"{upper_color_desc}{upper_clothing.name}"
else:
upper_clothing_description = "bare chest, nipples, uncensored"
if currentPerson.has_stomach_cum:
upper_clothing_description = f"{upper_clothing_description}, cum on stomach"
if currentPerson.has_tits_cum:
upper_clothing_description = f"{upper_clothing_description}, cum on tits"
#If the person is wearing lower clothing
lower_clothing_description = ""
if lower_clothing != None:
lower_color = get_clothing_color_name(lower_clothing)
lower_color_desc = f"{lower_color} " if lower_color else ""
lower_clothing_description = f"{lower_color_desc}{lower_clothing.name}"
else:
ass_desc = ""
if currentPerson.has_ass_cum:
ass_desc = "cum on ass, "
pussy_desc = f"{pubeDescription} pussy"
if currentPerson.has_creampie_cum:
pussy_desc = f"cum in {pussy_desc}"
lower_clothing_description = f"bottomless, {ass_desc}{pussy_desc}, uncensored"
# Put the clothing descriptions together
outfit_prompt = f"{upper_clothing_description}, {lower_clothing_description}"
if upper_clothing != None and lower_clothing != None:
outfit_prompt = f"{outfit_prompt}, SFW"
if currentPerson.has_face_cum:
outfit_prompt = f"{outfit_prompt}, cum on face"
if currentPerson.has_mouth_cum:
outfit_prompt = f"{outfit_prompt}, cum in mouth"
Interesting... I'll try it.Officially declaring them a slave doesn't affect that, but high obedience does. I've occasionally done a thing where I give employees Pay Cut punishments until they're working for $0.00. The lower their obedience, the more you have to pay them to avoid them deciding to quit. I think someone said 250 Obedience is the threshold at which they'll accept working for free, but I can't find that comment anymore. It definitely works at 290, though. So you can effectively make them a slave that works for free by raising their obedience, it's just not as simple as putting the collar on them in your dungeon. And it requires some luck (unless you have that one policy), because you need infractions. If you try to cut their pay for a negative Performance Review, it seems like the game doesn't check Obedience in that instance, so they just quit.
What model and in-game generation settings are you using?You can add cum in SD_PromptBuilder_ren.py
Either go through currentPerson.outfit.accessories array and check for creampie/cum or check if currentPerson cum variables are true: has_ass_cum, has_creampie_cum, has_face_cum, has_mouth_cum, has_stomach_cum, and has_tits_cum
Keep in mind, the more cum you add the more nsfw it becomes and you're more likely to get an image not conforming to your prompt. For example, just having cum in mouth could end up generating a blowjob picture but you prompted a standing picture.
I'm using something like this, only adding cum if it should be visible:
View attachment 4792723
Also the mod has lines for pubic styles. I think they were broken, so downloading the newest version might fix it for you.Python:if upper_clothing != None: upper_color = get_clothing_color_name(upper_clothing) upper_color_desc = f"{upper_color} " if upper_color else "" upper_clothing_description = f"{upper_color_desc}{upper_clothing.name}" else: upper_clothing_description = "bare chest, nipples, uncensored" if currentPerson.has_stomach_cum: upper_clothing_description = f"{upper_clothing_description}, cum on stomach" if currentPerson.has_tits_cum: upper_clothing_description = f"{upper_clothing_description}, cum on tits" #If the person is wearing lower clothing lower_clothing_description = "" if lower_clothing != None: lower_color = get_clothing_color_name(lower_clothing) lower_color_desc = f"{lower_color} " if lower_color else "" lower_clothing_description = f"{lower_color_desc}{lower_clothing.name}" else: ass_desc = "" if currentPerson.has_ass_cum: ass_desc = "cum on ass, " pussy_desc = f"{pubeDescription} pussy" if currentPerson.has_creampie_cum: pussy_desc = f"cum in {pussy_desc}" lower_clothing_description = f"bottomless, {ass_desc}{pussy_desc}, uncensored" # Put the clothing descriptions together outfit_prompt = f"{upper_clothing_description}, {lower_clothing_description}" if upper_clothing != None and lower_clothing != None: outfit_prompt = f"{outfit_prompt}, SFW" if currentPerson.has_face_cum: outfit_prompt = f"{outfit_prompt}, cum on face" if currentPerson.has_mouth_cum: outfit_prompt = f"{outfit_prompt}, cum in mouth"
I'm usingWhat model and in-game generation settings are you using?
I feel like I just saw an answer about this from Starbuck, and I haven't been on the discord for a while, so it was probably in this thread, but I can't remember the details right now. I think it has to do with whether the MC will go along with the woman being dominant.MC Non Consent
That file is most definitely in the scripts.rpa file, with the proper path, in the Rar I uploaded.