ibnarabi

Member
May 21, 2021
197
923
160
Hello, could you please add a Chinese language option to the game. If not possible, I would like you to upload an unencrypted game so that I can add a language option to the game. I am extremely grateful.
This is the game code, have fun :)
 

ibnarabi

Member
May 21, 2021
197
923
160
Some fixes to the dev build and mods, includes all the working Mods besides the AI image gen (VT & CT, RealPorn, moresomes, Zenpak, Kaden and Kina mods) PC/Linux. Your saves should work if they were made with the last Nora build I uploaded, mine do.



 
Last edited:

hardace

Impatiently waiting for the next update
Donor
Oct 8, 2017
104
146
275
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

2) When engaging Iris Vandenberg at home with her mother, Christina watching, the game will soft lock when Christina asks to join. The only way to complete this scene, for me, was to ensure Iris is completely naked before begininning.

I tried to get into discord to report these, but discord is being a bitch today.
 
  • Like
Reactions: Draakaap23

Deane9850

Active Member
Jan 4, 2018
636
663
302
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
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)
My mod solves this by giving them happiness boost according to their love, but only up to 130 happiness.
 

Aion_Abyss

Active Member
Jul 28, 2020
726
584
279
Use URM. It's easier.
I got URM after I read your suggestion but some things I can't seem to find with it.

Is there a way to make an existing character the daughter or mother of another existing character? I assume not since every command ik of requires having the character on the screen
 

Cezak

Newbie
Feb 6, 2022
66
76
141
So... what's the point of slaves? It's not that they'll work for me for free at the company, or that they'll stop asking me for pay raises... from what I see, you can perform some S&M-type actions with them in the dungeon and put a collar on them to keep them from losing their obedience. But what other use do they have? What advantages or disadvantages do they have?
 

rb813

Well-Known Member
Aug 28, 2018
1,587
1,089
326
It's not that they'll work for me for free at the company, or that they'll stop asking me for pay raises...
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.
 
  • Thinking Face
Reactions: Cezak

Chewbacca

New Member
Jun 18, 2017
4
2
74
Do you have any idea what can cause that when using GenAI, I sometimes get two pictures next to each other? Different ones, but of the same person.
 

bowobble

New Member
Mar 18, 2021
10
13
126
Regarding 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.
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:
Stephanie35979480.png

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"
Also the mod has lines for pubic styles. I think they were broken, so downloading the newest version might fix it for you.
 

grylock

New Member
Oct 23, 2020
11
6
103
Somehow i can't get the Ellie introduction event to trigger. I have all nanobots on mastery 5+ and she is nowhere in sight. I managed to trigger her once during my first playthrough, but since then, nada, No blackmail. What am I missing? Any ideas?
 

Cezak

Newbie
Feb 6, 2022
66
76
141
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.
Interesting... I'll try it.
 

Theemanx

Newbie
Aug 9, 2023
23
3
113
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

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"
Also the mod has lines for pubic styles. I think they were broken, so downloading the newest version might fix it for you.
What model and in-game generation settings are you using?
 

bowobble

New Member
Mar 18, 2021
10
13
126
What model and in-game generation settings are you using?
I'm using with , DPM++ 2M Sampler, 25 steps, cfg 5.0 and in prompt style I have: full body portrait, 1 girl, <lora:nyantcha_style_illustrious_goofy:1>, masterpiece, best quality, amazing quality, black background
I don't have ADetailer on but I recommend turning it on if you can take the speed hit.
 

LickeyDs

Member
Nov 2, 2017
165
270
225
I've been playing for quite a while, but I still don't know what some of the settings do.
preferences.jpg
Specifically the Rollback Side, Embedded NTR, and MC Non Consent options.
Also, does Always Ask Condom mean that even girls who hate condoms and are obsessed with breeding would still ask for a condom?
 

crazybeaver

Active Member
May 4, 2017
562
260
299
Kind ladies and gentlemen, I kindly ask for help in creating a batch file to set attributes for each person in the game. I am missing the names of the "opinions" and the code to modify them. Perhaps someone could assist?
just for begining:
the_person.max_energy = 300
the_person.energy = 300
 
4.60 star(s) 79 Votes