mn16tor

New Member
May 28, 2017
12
8
This is the 2nd time peoples reporting this same event bug. I can't replicate the bug, and the event have been in the mod for like, eternity and always behaving.
There is extra "_" in temp__list on line 30.

And for the change done to this function a couple of day ago in commit 5a67e0417367596a89c52541822aa79bb26b6659: The issue in original version could be missing [] around the part that should produce a list: get_random_from_list([x for x in...])
 
Last edited:

fulcrum

Engaged Member
Feb 2, 2018
3,610
2,136
i understand its to make it more fine grained who you dose, but i'd rather if the daily dosage policy didnt require adding it to the duty load of an employee.
 

sos955009

New Member
Sep 28, 2019
14
3
Obvious question is obvious, but... You DID install stable diffusion locally, right? The mod itself requires a stable diffusion install, and isn't as easy as just drag & dropping the mod.

Let's assume that you're starting from complete scratch, since I'm sure some others out there are trying to get the mod running from nothing as well, and it's easier to just start here. It's strongly, strongly recommended that you don't do this on cards with less than 6gb vram, or on older 20x cards (if you're doing this on a 10x ti card, it's possible but jfc what are you doing), and assumes you're using an nvidia card.
  1. Install forge (or reForge if you know what you're doing) - I'd suggest doing the advanced install steps (downloading python 3.10, git, then doing a git clone of the )
  2. Download a model, I've listed two here, but the current genning standard is using an illustrious based model, such as
  3. Place the .safetensors model in your webui\models\Stable-diffusion\ folder
  4. Locate your webui-user.bat file inside of your webui folder, !!!MAKE A COPY OF IT!!!, then (optionally rename, and) edit that copy with a text editor. Locate
    Code:
    set COMMANDLINE_ARGS=
    and add the following to it after the ='s sign
    Code:
    --port=7860 --api --cors-allow-origins *
    It is important that you use this copy to launch the webui when running the game. You want to leave the default webui-user.bat alone, and use that one when using stable diffusion normally when not playing the game. If you don't do this, and attempt to install extensions in to stable diffusion, you will have a very bad time.
  5. Run copied/renamed webui-user.bat from the above step and wait for it to open forge in your browser
  6. While waiting on the webui to open, download the mod and extract it in to the mods folder located inside of the game folder where your lab rats 2 exe is located. DO NOT LAUNCH THE GAME YET.
  7. When the webui finally opens, it is safe to launch the game
  8. Once loaded in to the game, click the GenAI Config button at the bottom of your UI
  9. Scroll down, click 'Model' and select the model you downloaded/want to use (I'll assume you listened and used an illustrious based model, such as noobai, or the other two I listed)
  10. Click 'Sampler' and select Euler or Euler A
  11. Set Steps to 25
  12. Set CFG scale to 5.0
  13. Set your resolution to 1024x1024 or 896x1152
  14. Set 'Auto Generate' to On to automatically generate images, or Off if you want to manually generate them. For simplicity's sake, set it to on and go talk to a girl. With any luck, you've installed everything correctly and it'll tell you when it's generating an image. All that's left to do is wait. Time taken varies based on hardware..
If you've installed everything, but it's still not working, the command prompt that opens when running the webui-user.bat should spit out the errors you're encountering. That's likely where you'll find your problem if it isn't working for whatever reason, unless you're getting an ingame error.

Anyways, here's some example images of how MY gens look, using the stuff I mentioned in this post, keeping the same settings between models and gens. I've also included what they look like without adetailer, without highres fix, and without the LoRA, if for whatever reason you hate yourself and/or are GLaDOS running on a potato.

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.

As you can see, settings, LoRAs, and extensions all make a world of difference. Using the above guide, out of the box you can basically just expect anything from the first column. But the simple act of adding in a LoRA improves the image a fair bit, and using hires fix to upscale it 2x improved it even more. Adding adetailer, but no hires fix is my default for genning images, but tossing in the hires fix on top of adetailer makes a massive difference. Point is, YMMV based off of a lot of factors, and you can get pure slop or something that's pretty decent. Just gotta experiment and find out.
Okay, seeing the demand for graphics cards, I know, I’d better give up QQ
 

Urist

Newbie
Nov 29, 2016
40
51
Okay, seeing the demand for graphics cards, I know, I’d better give up QQ
Yeah, unfortunately, AI generation is very GPU intensive. I run a 3060 12gb, which is considered somewhat of a "bad" card, and it takes me like 18s to generate an image when I don't have multiple adetailer nodes enabled, just the hands. Generating one with all my models enabled takes like 30s. I'm jealous of those people on the 40x TI cards who can generate & adetail images in like 5 seconds, lol.
 

Dark Lord Nova

Active Member
Nov 7, 2017
576
1,159
I might be able to at some point, things would be a lot easier of I could properly depack & repack the core game files themselves. It would be a lot easier to just modify the clothing_list.rpyc file, but the game was compiled with renpy 7.4 and and on a version of python 2, and renpy screams at me if I try and decompile things and then try to recompile them, so I'm stuck doing a really shitty coding job on the mod files themselves. People would probably screech and die if they saw my coding skills, lol.

As for the stuff I'm using,

You don't have permission to view the spoiler content. Log in or register now.

I'll post some example gens with my various settings here in a bit, using the png info based off of what was generated in game.
Yeah, I don't have those, but I did just grab the Bruce Timm LoRA. I'm not really into the furry stuff, but I might still download them anyway. I've got a few other cartoon-style ones too.

Obvious question is obvious, but... You DID install stable diffusion locally, right? The mod itself requires a stable diffusion install, and isn't as easy as just drag & dropping the mod.

Let's assume that you're starting from complete scratch, since I'm sure some others out there are trying to get the mod running from nothing as well, and it's easier to just start here. It's strongly, strongly recommended that you don't do this on cards with less than 6gb vram, or on older 20x cards (if you're doing this on a 10x ti card, it's possible but jfc what are you doing), and assumes you're using an nvidia card.
  1. Install forge (or reForge if you know what you're doing) - I'd suggest doing the advanced install steps (downloading python 3.10, git, then doing a git clone of the )
  2. Download a model, I've listed two here, but the current genning standard is using an illustrious based model, such as
  3. Place the .safetensors model in your webui\models\Stable-diffusion\ folder
  4. Locate your webui-user.bat file inside of your webui folder, !!!MAKE A COPY OF IT!!!, then (optionally rename, and) edit that copy with a text editor. Locate
    Code:
    set COMMANDLINE_ARGS=
    and add the following to it after the ='s sign
    Code:
    --port=7860 --api --cors-allow-origins *
    It is important that you use this copy to launch the webui when running the game. You want to leave the default webui-user.bat alone, and use that one when using stable diffusion normally when not playing the game. If you don't do this, and attempt to install extensions in to stable diffusion, you will have a very bad time.
  5. Run copied/renamed webui-user.bat from the above step and wait for it to open forge in your browser
  6. While waiting on the webui to open, download the mod and extract it in to the mods folder located inside of the game folder where your lab rats 2 exe is located. DO NOT LAUNCH THE GAME YET.
  7. When the webui finally opens, it is safe to launch the game
  8. Once loaded in to the game, click the GenAI Config button at the bottom of your UI
  9. Scroll down, click 'Model' and select the model you downloaded/want to use (I'll assume you listened and used an illustrious based model, such as noobai, or the other two I listed)
  10. Click 'Sampler' and select Euler or Euler A
  11. Set Steps to 25
  12. Set CFG scale to 5.0
  13. Set your resolution to 1024x1024 or 896x1152
  14. Set 'Auto Generate' to On to automatically generate images, or Off if you want to manually generate them. For simplicity's sake, set it to on and go talk to a girl. With any luck, you've installed everything correctly and it'll tell you when it's generating an image. All that's left to do is wait. Time taken varies based on hardware..
If you've installed everything, but it's still not working, the command prompt that opens when running the webui-user.bat should spit out the errors you're encountering. That's likely where you'll find your problem if it isn't working for whatever reason, unless you're getting an ingame error.

Anyways, here's some example images of how MY gens look, using the stuff I mentioned in this post, keeping the same settings between models and gens. I've also included what they look like without adetailer, without highres fix, and without the LoRA, if for whatever reason you hate yourself and/or are GLaDOS running on a potato.

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.

As you can see, settings, LoRAs, and extensions all make a world of difference. Using the above guide, out of the box you can basically just expect anything from the first column. But the simple act of adding in a LoRA improves the image a fair bit, and using hires fix to upscale it 2x improved it even more. Adding adetailer, but no hires fix is my default for genning images, but tossing in the hires fix on top of adetailer makes a massive difference. Point is, YMMV based off of a lot of factors, and you can get pure slop or something that's pretty decent. Just gotta experiment and find out.
Gotta say, man—this is one of the best written guides I've come across. I usually need visuals—videos, pictures, someone walking me through stuff—'cause I've got a bit of a learning issue and written instructions don't always click for me. But the way you laid this out Super easy to follow. Really appreciate that. Well of course, I already knew how to install Forge, Automatic1111, even Fooocus and ComfyUI—been through that setup stuff before.

The GenAI guide that comes with the mod says that when I'm using DreamShaper XL v2.1 Turbo, I should be running Simpler DPM++ SDE, Steps at 4, CFG at 2, and 1024x1024 for Width and Height. But honestly, your setup feels better—especially with the different checkpoints and LoRAs you're using. Makes a difference.

Okay, seeing the demand for graphics cards, I know, I’d better give up QQ
Yeah, unfortunately, AI generation is very GPU intensive. I run a 3060 12gb, which is considered somewhat of a "bad" card, and it takes me like 18s to generate an image when I don't have multiple adetailer nodes enabled, just the hands. Generating one with all my models enabled takes like 30s. I'm jealous of those people on the 40x TI cards who can generate & adetail images in like 5 seconds, lol.
Yeah, it sucks how demanding AI image generation is on GPUs. Nvidia RTX 40-series Ti cards are best recommended. I'm running this on my desktop with an Nvidia RTX 4060 Ti (8GB), Ryzen 5 5600X (6-core), and 16GB of RAM—decent setup, nothing crazy, but it handles it pretty well.

Now, my laptop? Whole different story. It's rocking a Nvidia GTX 1660 Ti with an Intel Core i7-9750H and the same 16GB of RAM, but man… running AI stuff on it is painful. Like, I'll avoid it unless I have no choice.

I've had my new desktop for almost two years now, so it's a lot newer than my laptop. Most people out there seem to be flexing 4070s or even 4090 Tis, and here I am with the budget-friendly 4060 Ti. It gets the job done, but of course now the RTX 50-series is out. Just our luck, lol.
 

Dark Lord Nova

Active Member
Nov 7, 2017
576
1,159
I ran into a weird issue—tried installing the ADetailer extension on Automatic1111, and it threw an error. Thing is, it worked fine before, back when I had it installed previously. But after reinstalling A1111 and messing with the webui-user.bat file to add that command, it started acting up. You ever run into something like this? Any idea how to fix it, Urist?

*** Error completing request
*** Arguments: (' ', ['ads', 'localization', 'installed'], 'hide', 'or', 0, '') {}
Traceback (most recent call last):
File "my external drive:\Stable Diffusion WebUI\webui\modules\call_queue.py", line 74, in f
res = list(func(*args, **kwargs))
File "my external drive:\Stable Diffusion WebUI\webui\modules\ui_extensions.py", line 400, in install_extension_from_index
ext_table, message = install_extension_from_url(None, url)
File "my external drive:\Stable Diffusion WebUI\webui\modules\ui_extensions.py", line 345, in install_extension_from_url
check_access()
File "my external drive:\Stable Diffusion WebUI\webui\modules\ui_extensions.py", line 23, in check_access
assert not shared.cmd_opts.disable_extension_access, "extension access disabled because of command line flags"
AssertionError: extension access disabled because of command line flags

---
 

Urist

Newbie
Nov 29, 2016
40
51
I ran into a weird issue—tried installing the ADetailer extension on Automatic1111, and it threw an error. Thing is, it worked fine before, back when I had it installed previously. But after reinstalling A1111 and messing with the webui-user.bat file to add that command, it started acting up. You ever run into something like this? Any idea how to fix it, Urist?
Yeah, you need to remove your command line args from the base webui-user.bat, make a copy of it, and then re-add the args to the copied bat file. Use that one when playing the game, use the unmodified one when not. That's why I said you'd have a bad time installing extensions if you used the wrong bat file, lol.
 
  • Like
Reactions: Dark Lord Nova

Dark Lord Nova

Active Member
Nov 7, 2017
576
1,159
Yeah, you need to remove your command line args from the base webui-user.bat, make a copy of it, and then re-add the args to the copied bat file. Use that one when playing the game, use the unmodified one when not. That's why I said you'd have a bad time installing extensions if you used the wrong bat file, lol.
Okay that totally make sense. Lol
 

Urist

Newbie
Nov 29, 2016
40
51
Yeah, I don't have those, but I did just grab the Bruce Timm LoRA. I'm not really into the furry stuff, but I might still download them anyway. I've got a few other cartoon-style ones too.


The GenAI guide that comes with the mod says that when I'm using DreamShaper XL v2.1 Turbo, I should be running Simpler DPM++ SDE, Steps at 4, CFG at 2, and 1024x1024 for Width and Height. But honestly, your setup feels better—especially with the different checkpoints and LoRAs you're using. Makes a difference.
Lol, I'm not in to furry either, but the models are the ones that produce the best western-style results while also being able to do anime.

And as for the dreamshaper settings, My settings were under the assumption you were using an illustrious based model, and those run on Euler/Euler A with best results using Automatic/SGM Uniform, occasionally Karras. Some illustrious models are able to be genned on DPM++, but it's not recommended, as you end up with eye vomit.

Here's an example of genning on O!AF with various samplers & schedulers, pre-adetailer.

Okay that totally make sense. Lol
Lol, it happens. Plus your console spat out what was wrong anyways, "AssertionError: extension access disabled because of command line flags". At least the error here is easy to locate, I've had some real headache errors with stable diffusion before. And at least it's not as bad as trying to troubleshoot LoRAs, lol. Those are basically you going in blind, hoping you did your settings correct, and not being able to find out until you've let it cook for a while lol.
 
  • Like
Reactions: Dark Lord Nova

Sir_EatsALot

Active Member
Aug 24, 2017
628
753
Anyone know the conditions to unlock the sex shop? It doesn't show up on the map. The aunt already has a new place and the strip club has closed down. The game tells me to go to the sex shop, but it's not on the map.
 

Xathras

Member
Feb 3, 2020
149
146
Just to confirm, is this new version (2025.04) backwards compatible with the last market version (2024.08)? I noticed it kept my saves from the older version and hasn't given me the "you are using saves from an older version" warning when I load them as it did before.
 
  • Like
Reactions: Dark Lord Nova

slick97

Active Member
Dec 2, 2021
734
1,972
Just to confirm, is this new version (2025.04) backwards compatible with the last market version (2024.08)? I noticed it kept my saves from the older version and hasn't given me the "you are using saves from an older version" warning when I load them as it did before.
No, old saves are not compatible with new game versions (typically). Changes to python files technically won't break your save, but you won't experience any of the changes until a new save file is created.

Additionally, any RenPy variables that are modified - typically with a name change - breaks old saves files.
 
  • Like
Reactions: Xathras and a1fox3

a1fox3

Loving Family Member's
Donor
Respected User
Aug 8, 2017
24,664
17,157
It would be nice to have a way to increase fertility by a lot without reducing breast size, sometimes I like my women with small tiddies
Not really following what you want.
You have a serum that has 70% fertility and increase breast size from Nora.

Now if you meant you don't want them to increase then use the breast reducing serum along side the serum from Nora.
Just know that when they become pregnant breast will grow also just by being pregnant.

I also like small titties and use the breast reducing serum on all women all the time.
 

QQBangBang

Member
Apr 4, 2017
149
50
Hey guys.
My game gets stuck whenever I try a threesome with the mom and the sis. One of them asks to join, one gets in position, and they just look at me :)) clicking or skipping doesn't change anything, i can only load an earlier save.
 

Hellspawn56

New Member
Aug 19, 2018
13
1
Sorry If I upset anyone, but I'm having some problems with the game, when I tried to save the game, it crashes, if I click desgin drug game crashes, someone calls me it crashes, did I do something wrong. Sorry no mods are installed. Oh and also right clicking anywhere and it crashes.
 
4.60 star(s) 76 Votes