bowobble

New Member
Mar 18, 2021
10
12
Random question on the GenAI mod.

I've installed SD Web UI locally and it's working in LR2. I can select the sampler and settings in the GenAI menu and it will generate images. However, the selected sampler doesn't work and defaults to automatic. The command window shows the following error: WARNING:root:Sampler Scheduler autocorrection: "DPM++ 2M" -> "DPM++ 2M", "None" -> "Automatic"

Anyone know a fix for this?

Probably not relevant, but with the command line arguments for GenAI added to the bat file the command window/server runs but the webUI doesn't show up, even if you enter the IP in your browser-- I assume that is normal?
It looks like it's not setting the scheduler correctly but that should be fine since it's picking the scheduler automaticly.
I'd try picking different schedulers but this shouldn't matter that much. Forge/A1111 handles schedulers pretty well.
I think I also had the same issue with webui but I just gave up and switched to the better SwarmUI.
One option would be to edit the python code and send the sampler you want to use by hardcoding it.

webui not showing up sounds like you started it with --listen, you should still be able to see the webui if you go to or
 

Jsmith281

New Member
Jan 21, 2018
2
0
It looks like it's not setting the scheduler correctly but that should be fine since it's picking the scheduler automaticly.
I'd try picking different schedulers but this shouldn't matter that much. Forge/A1111 handles schedulers pretty well.
I think I also had the same issue with webui but I just gave up and switched to the better SwarmUI.
One option would be to edit the python code and send the sampler you want to use by hardcoding it.

webui not showing up sounds like you started it with --listen, you should still be able to see the webui if you go to or
Thanks! I'll give SwarmUI a shot. I tried moving to StabilityMatrix and running it in Forge, it works but same problem.
 

lan1967

Member
Dec 15, 2017
233
65
# How to console - If its activated its SHIFT+O (ESC to close).
# To activate console - edit the following file
# \Lab_Rats_2-v0.xx.0-pc\renpy\common\00console.rpy
# Find this line (around line 108) config.console = False and edit it to True.

# mc. <- You
# the_person. <- The person you are currently interacting with in the game. Its not a name but literally the_person)
# Letters goes in "", numbers without "". Example: mc.int = 6 and the_person.name = "Yolandi"
# Words are case sensitive. Example the_person.relationship = "Single" NOT "single"

mc.name='YourNameHere'
mc.last_name='YourLastNameHere'
mc.business.name='CompanyNameHere'

# mc.money = xx <- This may not be used in the future. It seems to have been removed from the game.
mc.business.funds = xx <- These are your company funds ingame.
mc.business.supply_count = xxxx

mc.charisma = xx
mc.int = xx
mc.focus = xx

mc.hr_skill = xx
mc.market_skill = xx
mc.research_skill = xx
mc.production_skill = xx
mc.supply_skill = xx

mc.sex_skills["Foreplay"] = xx
mc.sex_skills["Oral"] = xx
mc.sex_skills["Vaginal"] = xx
mc.sex_skills["Anal"] = xx

mc.energy
mc.max_energy
mc.arousal
mc.max_arousal

the_person.love = xx
the_person.happiness = xx
the_person.energy
the_person.max_energy
the_person.arousal
the_person.max_arousal
the_person.core_sluttiness = xx (From 0 to 100)
the_person.sluttiness = xx (From 0 to 100)
the_person.obedience = xx (If you're having trouble with tier 3 research, set this to 140 or something.)
the_person.tits = "xx" ("AA", "A", "B", "C", "D", "DD", "DDD", "E", "F", "FF")
the_person.body_type = "xx" ("thin_body", "standard_body", "curvy_body")
the_person.height = x.x (From 0.8 to 1.0 - will take effect once the character is redrawn by the game engine)

the_person.name = "xx"
the_person.last_name = "xx"

the_person.kids = xx
the_person.relationship = "Single"
the_person.age = xx

# Changing titles of a person while keeping color and font formatting:

the_person.set_title("custom title") # e.g "friend", "employee"
the_person.set_possessive_title("their custom title") # e.g "your friend", "your employee"
the_person.set_mc_title("what they call you") # e.g "Boss", "Master", "Friend"

# Someone asked about changing the positions of locations on the map.
# All Room objects have an attribute called map_pos which references their [x, y] position on the map grid.
# e.g the newely added strip_club has a map_pos of [6, 5] meaning 6 on the x- axis from the left and 5 on the y- axis starting from the top.

room.map_pos = [x, y] # This will re- position the location on the map.
room.visible = True # Determines if the location is visible on the map.
room.public = True # If set to False then people will not roam into the location unless specified.
room.formalName = "new name" # Changes the name displayed on the map.

# If a room does not have the sexual positions you would like available it is most likely due to not having the correct objects available.
# You can add any objects to the room by using the add_object function together with a "make object" function.

room.add_object(make_wall()) # Adds a wall that can be leaned up against etc.
room.add_object(make_floor()) # Adds a floor to the room that can be used for sex.
room.add_object(make_bed()) # Adds a bed to the room.
room.add_object(make_window()) # Adds a window to the room.

# NOTE: room needs to be replaced with the variable of the room you want to edit.
# There are a couple of ways to do this. Easiest would be to go into the room and use mc.location which references your current location (room)

mc.location.map_pos = [x, y] # This edits map position of the current room you are in.
mc.location.add_object(make_bed())

list_of_places[0].map_pos = [x, y] # Replacing 0 with another number e.g 10 will reference a different room. You can do list_of_places[0].name or formalName to see which one it is you are editing.
list_of_places[0].add_object(make_bed())

strip_club.map_pos = [x, y] # This uses the variable name that the room is saved to. Names of all the rooms can be found in script.rpy ca. half-way down the label create_test_variables at lines 9150~ to 9500~.

# You can also add actions to a room by appending it.
room.actions.append(sleep_action) # This will allow you to sleep in the room. Adding actions to a room you can basically move the office into your bedroom.

#If your play through is having problems with the start of renovations use the following console command
mc.business.event_triggers_dict["home_improvement_unlocked"]=True
this will start the process so all you will need to do after the command is to check your phone and start.

first command to enter is
long
it will stop renpy from cropping the output (very annoying for long lists)

list_of_traits[#].name
returns the name of the #th trait (production schemes are mechanicaly a trait too), begins at 0 -> list_of_traits[0].name

dir(list_of_traits[0])
returns all the fields of the first trait. selected excerpts with more guess than knowing what they do:

attention - increases serum attention penalty containing this trait when sold to public
duration - all traits are summed up to final serum duration
side_affect_chance - all traits are summed up to determine the randomly assigned trait effect chance when unlocking (mastery reduces that chance)
slots - adds trait slots (duh)

to use these, enter like name:

list_of_traits[0].slots = #
where # is the new number

tip: always use commands without parameters first to see what its set as to get an idea for the usage

list_of_traits[0].slots
displays as

list_of_traits[0].slots
1

generate_daughter(self, force_live_at_home = False, age: int = None, job: JobDefinition = None)

the_person.generate_daughter(True, 19)

and if the girl you want to have a sister with doesn't have a mom npc on the board... just do this

the_person.generate_mother(True, 42)

Thanks Elkrose
Is there a command to mark a quest as finished? I am stuck on certain unfinished stories.
 

bloodbus

Member
Sep 30, 2020
429
353
This game is confusing as fuck with a ton of menus & stats, have no idea what to do after the very brief prologue which doesn't tell you anything useful.
Is there any kind of guide or something?
When I first found this game I set out to try it until I failed. It's not that hard to figure out especially with save scumming. Serum contracts are your big fish. Find traits that suit your big fish. Everything else is just a sandbox for you to explore
 

thundersan86

Member
Aug 1, 2019
105
42
Hello, dear gentlemen of culture of this forum. I'm here to ask for your help with a somewhat completed save game for the game version before the most recent update. Unfortunately, I had some mishaps with my operating system, and all of my files were lost. I really appreciate all your help.
 

Deane9850

Active Member
Jan 4, 2018
597
612
Hello, dear gentlemen of culture of this forum. I'm here to ask for your help with a somewhat completed save game for the game version before the most recent update. Unfortunately, I had some mishaps with my operating system, and all of my files were lost. I really appreciate all your help.
HAHAHAHA.

NO.
 
  • Like
Reactions: Obiyo

dalzomo

Active Member
Aug 7, 2016
937
776
This game is confusing as fuck with a ton of menus & stats, have no idea what to do after the very brief prologue which doesn't tell you anything useful.
Is there any kind of guide or something?
I wrote a few guides/walkthroughs which are linked in the OP of the vanilla game, which is linked in the OP of this thread next to "original game/creator". They are written for the vanilla game, so some things will be different but it should give you a better idea how to play. Just remember to continue to ask your questions in this thread if you're playing this version of the game
 
  • Like
Reactions: Seraphi23

Biggerfloppa

New Member
Dec 15, 2022
2
0
Anyone else on Android having the game display errors during character creation? I can't change character name or company name without hitting an unexpected error in joiplay.
 

Darkmind

New Member
Jan 27, 2019
8
6
Hello, dear gentlemen of culture of this forum. I'm here to ask for your help with a somewhat completed save game for the game version before the most recent update. Unfortunately, I had some mishaps with my operating system, and all of my files were lost. I really appreciate all your help.
I recommend consulting your backup. You do have a backup, right?
 
May 30, 2019
57
106
I cannot figure out hot to complete Master of Logistics. "Get on the phone" tells me nothing helpful since there are no options on the phone. There is nothing in the production tab that lets me order supplies. I hired a supply person, but this does not complete the quest either.

I have searched for an answer and the only reply is " Just go the main office and order supplies there via the menu " and I cannot find how to do that. Are there additional menus that I am not seeing? The tutorial for this is . . . lacking.
Go to the main office and click 'order supplies'.
Make sure the amount of max supplies (another option in the main office) is above the supplies you have on hand, otherwise you'll get text saying you did not order any supplies because you already had enough.
 

Tarensae

New Member
Dec 21, 2019
4
3
Anyone else on Android having the game display errors during character creation? I can't change character name or company name without hitting an unexpected error in joiplay.
Theres a simple fix for it, uninstall your renpy version from joiplay, which you'll probably have the latest version, delete joiplay, then download the 1.20.540 version of joiplay, and then install the 8.3.2 version of renpy plugin. It should work afterwards
 

Robthebob

New Member
May 5, 2017
5
1
try to remove the "--listen", just leave "--port=7860 --api --cors-allow-origins *"
It looks like it's not setting the scheduler correctly but that should be fine since it's picking the scheduler automaticly.
I'd try picking different schedulers but this shouldn't matter that much. Forge/A1111 handles schedulers pretty well.
I think I also had the same issue with webui but I just gave up and switched to the better SwarmUI.
One option would be to edit the python code and send the sampler you want to use by hardcoding it.

webui not showing up sounds like you started it with --listen, you should still be able to see the webui if you go to or
this AND moved the command line to the beginnig at the .bat

now it works
Ty Guys
 
  • Like
Reactions: Jsmith281
4.60 star(s) 73 Votes