4.60 star(s) 56 Votes

ibnarabi

Newbie
May 21, 2021
37
126
What do the five mods do?
Just glance back a couple pages, the same 5 mods as all the other uploads with 5 mods I've uploaded. I'm not typing all that out every time, that would take longer than uploading it. (Virgin Tracker, RealPornMod, Kaden, Kina and moresomes) :)
 

rb813

Well-Known Member
Aug 28, 2018
1,085
655
I'm not typing all that out every time, that would take longer than uploading it.
If I remember correctly, the comment a couple pages back had an extremely detailed feature list for Kaden and Kina, and nothing about the other three (I said that I could infer more about them based on the names, but you can't assume everyone will do that). If you want to avoid this question in the future, my recommendation would be to make a comment with a general overview of features for each mod, and then link to that comment whenever you post a new upload.
 
  • Like
Reactions: ibnarabi

ibnarabi

Newbie
May 21, 2021
37
126
If I remember correctly, the comment a couple pages back had an extremely detailed feature list for Kaden and Kina, and nothing about the other three (I said that I could infer more about them based on the names, but you can't assume everyone will do that). If you want to avoid this question in the future, my recommendation would be to make a comment with a general overview of features for each mod, and then link to that comment whenever you post a new upload.
I could, and that would be very kind, but considering there are over over 100 downloads for every question about what the mods are.... I'm gonna hope the very few individuals with the question just review the thread or use the search tool and find out on their own. They should learn to figure things out, it's an important skill on Earth, and I want to encourage that sort of inquiry in the Universe :)

 
Last edited:

rb813

Well-Known Member
Aug 28, 2018
1,085
655
I'm gonna hope the very few individuals with the question just review the thread or use the search tool and find out on their own.
Wouldn't they also have to join the Discord server, if they wanted to find out anything about the three that weren't ever described here? And if anything, it would make a lot of sense for you to explain what you personally like about these five mods enough to include them in all of your uploads. If you don't want to give us a description, at least give us a review. That way, there will be something for people to find when they use the search tool.
 

Poggersq

Well-Known Member
May 2, 2022
1,112
716
# 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
so: how do i open the console file? as a note pad text or something else??
 

Pacifist03

New Member
Aug 20, 2018
3
9
I'm tired of holes in clothes, so I painted some of them. But because of too many pictures I only fixed a small part of them. I hope someone will continue my work.

Installation:
1. In game folder delete archive "character_images.rpa"
2. Add the folder 'images' from the archive in the link above.
 

Gig1984

Member
May 3, 2018
118
19
Just played around with the research skill and the overall research value with a new game and only Stephanie as the researcher. Tried to modify her skill and stat values via cheats. Turns out, the research skill doesn't matter at all from the start, be it at 0 or 20, it's not counted for practical research efficiency. While her stats, intelligence and focus, do work, but with company efficiency 100% and counting the bonus from "Provide research expertise" duty results in slightly higher research efficiency than it should.
For example: int 0, focus 0 and research 0 = 11 research instead of 9; with int 2 = 18 instead of 16, with int 6 = 36 instead of 33 and with int 6 research 20 = 36 instead of 81.

So the calculation for research efficiency is completly messed up, even without the research skill.
 

Poggersq

Well-Known Member
May 2, 2022
1,112
716
Also "mc.max_energy" only changes the maximum value of the energy, to change the current energy use "mc.energy" instead. Or use both.
Also why don't you use the built in cheats? It can change the energy. Just press X.
oh.
 

inveiglerZim

Newbie
May 12, 2020
37
26
I've the same question as the user loqex regarding how to get the gym girl to start doing photoshoot with sister? and I add the question how to get the yoga courses in your company?
Many thanks in advance :)
First You need to talk with Erica (gym girl) and pick "Get to know her" action. She will eventually tell you about her financial problems. In release version 2024.05 and earlier this kicked off events with Sarah (HR Director) and your sister Lily.
Sarah will need to find at least 4 employees that like or love Yoga (I'm not sure if that includes her). You can do it by hypnosis or with Sarah during monday meetings (those first require you to agree to use suggestion serums in coffee).
When there are 4 employees that like/love Yoga, trainings will start. I think those are early morning/morning on weekends.

With sister You have to talk to her and then Erica will come for instagram photo shoots with Lily every sunday evening/night. In update 2024.06 I still haven't got this, maybe it needs more corruption of Lily/Erica, or more time.
 
Last edited by a moderator:

kazzari

Newbie
Jun 2, 2020
35
31
Console commands updates for last develop branch and mods only !

+ how to customise Wardrobes for new game !

and more ...


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.

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.

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.

++ reminder if you use Mods :

@ girls pref movies infos
for the right choice in movies dates and tv events in Mods

action = wild [Aunt, Steph, Camilla, Kaya, Ophelia]
comedic = relaxed [Alexia, Lily, Candance(gen), Sakari, Sarah, Starbuck, Iris]
romantic = reserved [Mom, Nora, Erica, Alpha, Cougar]
foreign = introvert [Cousin, Ashley, Ellie]
all but foreign = bimbo [Candance(bim)]

reminder warning => Last develop branch and mods for it can be find on discord only !

Modders recommand to follow this tuto to instal "last dev + mods" , it's an automated script made by Not Reimu especially for you if you are new with devs things on Renpy (thx to Elkrose for the tuto )
(you have to be logged on discord to follow this link , discord link in first post description!)

Warning : "if you want to play with last contents and mods , you must understand that you will be confronted with all sorts of bugs and that you are playing the role of beta tester."
and, of course, if you want to send reports, you are welcome , discord is the place to do it.

Have a nice day All ;)
 
Last edited:
4.60 star(s) 56 Votes