• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.
4.70 star(s) 51 Votes

QuietNine

New Member
Jul 3, 2018
12
10
Where can I find the files to edit the serum traits? I'd like to tweak the mind control one

What's with the long duration self replicating serum? it used to work in LabRats2 but not here, here I get like 8 turns only.
All serum stuff is found in game>major_game_classes>serum_related
 

AxelVieyra

Member
Jul 10, 2021
265
63
I didn't see this game. Is this the same Lab Rats 2 or is a more complete version with mods or something?
 

Elpescador

Member
Jul 11, 2017
374
465
So are Emily and Cristine Vandenberg just broken now? No matter how corrupt they are and what I try they'll only grope.
 

Draculesti

Newbie
May 20, 2019
65
41
After quite some time i`am dipping into the game again and hell the code looks much better than before.
i have downloaded the dev version und looked a little bit around than played the "stable version", means i can not change the code, but the commandoline should do everything what i want. But i can fell out of touch with python and some things are not as clear for me as they where before. So i will ask and yes i tryed to find the things i want to do mostly in the dev code ... but was not able to translate it into commandos.
What want do to is the following. Finding ingame a npc without a story so i don`t mess up anything.So i look up the people archive and the unique persons that are patreon chars.

Find some one ingame who is not one of the above persons. Than i try to do what i want, generate a whole new family.
Setting the age of the person to 39.
Code:
the_person.age =39
start adding children
Code:
the_person.generate_daughter(True)
the_person.kids=the_person.kids +1
than i try changing there relationship all to sisters (converting the mother to some of them)
Code:
for sister in town_relationships.get_existing_children(the_person):
town_relationships.update_relationship(the_person, sister, "Sister")
now they are all sisters and we find out where they all live
Code:
if not the_person.home in mc.known_home_locations: mc.known_home_locations.append(the_person.home)
because they are generated in the home of the mother they are all there so we go there and change there age to over 38.
the we give them all there own home
Code:
the_person.home = None
if the_person.home is None: the_person.generate_home
the_person.home.add_person(the_person) 
if the_person.home not in list_of_places: list_of_places.append(the_person.home)
now i create the children
Code:
the_person.generate_daughter(True)
the_person.kids=the_person.kids +1
and here is it that i fail ... generating the daughters don`t give them the other Sisters as Aunts nor sets them as niece.
i looked up there identifier
Code:
the_person.identifier
this gives me a number that is i think unique and should identify the person
i tried
for purpose of the commando the identifier is 7777
Code:
town_relationships.update_relationship(the_person, 7777 , "Aunt", "Niece")
which fails because he doesn`t regocnice the identifier as person
i tried some other stuff but the only way the code above worked was like this
Code:
town_relationships.update_relationship(the_person, mom, "Niece", "Aunt")
which only gives the_person the Aunt but not the aunt the niece.

so i was wondering how must the string look like to use the identifier
 
Last edited:
  • Like
Reactions: Burt

bob765h

Newbie
Jan 2, 2019
38
13
I change names of npc, now they have no home on the map.
Their home address is known to me but nothing on the map.
Any cheat to add them on the map ?
 

Draculesti

Newbie
May 20, 2019
65
41
I change names of npc, now they have no home on the map.
Their home address is known to me but nothing on the map.
Any cheat to add them on the map ?
this should create a new home and add it to the map

the_person.home = None
if the_person.home is None: the_person.generate_home
if the_person.home is not in list_of_places: list_of_places.append(the_person.home)
if the_person.home not in list_of_places: list_of_places.append(the_person.home)
 

MC Johnsson

Member
Jun 28, 2017
436
666
I've made the mistake like a few others have by moving main characters into the mansion and missing some events. I've read through the posts here and have so far only managed to get mom and lily to go back home, and their events happen as normal again. I can't get the following to go home as they no longer have a home to go to on the map anymore.

Any help would be very much appreciated please.

Characters I want to go back to their own houses.

Stephanie Deville and her sister Ashley Deville
Sarah Cooper
Cara Thrace
 

bob765h

Newbie
Jan 2, 2019
38
13
this should create a new home and add it to the map

the_person.home = None
if the_person.home is None: the_person.generate_home
if the_person.home is not in list_of_places: list_of_places.append(the_person.home)
if the_person.home not in list_of_places: list_of_places.append(the_person.home)
in console :
the_person.home = None
the_person.generate_home

2 last lines are the same:

list_of_places.append(the_person.home)
None
 

Draculesti

Newbie
May 20, 2019
65
41
in console :
the_person.home = None
the_person.generate_home

2 last lines are the same:

list_of_places.append(the_person.home)
None
you are right one of this should be
the_person.home.add_person(the_person)
is missing
and to know where the new home is
if not the_person.home in mc.known_home_locations: mc.known_home_locations.append(the_person.home)
 

Ascher

New Member
Aug 8, 2022
10
0
Dear MODDER.
I REALLY REALLY love this game, and thank you for Updating the MOD version. The game is more interesting after you modify it.
But I have some problem,and I really need you help PLEASE!!
I learned how to translate a renpy game in my language for several days.
I try to translate the game into Chinese version.It‘s going successfully,the translation almost finisher,but there were some bugs in the game after I translate it.
I don't why.
All the Single Characters have Significant Other.
I check their detial information ,the info shows their Relationship :Single,but they have Significant Other just like the Married NPC
So the game can't work properly.

I have no idea which rpy file needs to be modified

I REALLY NEED YOUR HELP, PLEASE!!! OTZ
This was the game before translated(modify)it $@I3MADT%L9$X6CXL[U099K.png
This is the game after translated(modify)it %7XT`W7I8TQ$LD6~DE5S)XR.png 7NDLMR0$3DMG47$$XLWKWHY.png
 

Ascher

New Member
Aug 8, 2022
10
0
After quite some time i`am dipping into the game again and hell the code looks much better than before.
i have downloaded the dev version und looked a little bit around than played the "stable version", means i can not change the code, but the commandoline should do everything what i want. But i can fell out of touch with python and some things are not as clear for me as they where before. So i will ask and yes i tryed to find the things i want to do mostly in the dev code ... but was not able to translate it into commandos.
What want do to is the following. Finding ingame a npc without a story so i don`t mess up anything.So i look up the people archive and the unique persons that are patreon chars.

Find some one ingame who is not one of the above persons. Than i try to do what i want, generate a whole new family.
Setting the age of the person to 39.
Code:
the_person.age =39
start adding children
Code:
the_person.generate_daughter(True)
the_person.kids=the_person.kids +1
than i try changing there relationship all to sisters (converting the mother to some of them)
Code:
for sister in town_relationships.get_existing_children(the_person):
town_relationships.update_relationship(the_person, sister, "Sister")
now they are all sisters and we find out where they all live
Code:
if not the_person.home in mc.known_home_locations: mc.known_home_locations.append(the_person.home)
because they are generated in the home of the mother they are all there so we go there and change there age to over 38.
the we give them all there own home
Code:
the_person.home = None
if the_person.home is None: the_person.generate_home
the_person.home.add_person(the_person) 
if the_person.home not in list_of_places: list_of_places.append(the_person.home)
now i create the children
Code:
the_person.generate_daughter(True)
the_person.kids=the_person.kids +1
and here is it that i fail ... generating the daughters don`t give them the other Sisters as Aunts nor sets them as niece.
i looked up there identifier
Code:
the_person.identifier
this gives me a number that is i think unique and should identify the person
i tried
for purpose of the commando the identifier is 7777
Code:
town_relationships.update_relationship(the_person, 7777 , "Aunt", "Niece")
which fails because he doesn`t regocnice the identifier as person
i tried some other stuff but the only way the code above worked was like this
Code:
town_relationships.update_relationship(the_person, mom, "Niece", "Aunt")
which only gives the_person the Aunt but not the aunt the niece.

so i was wondering how must the string look like to use the identifier
Good afternoon,Sir
I learned how to translate a renpy game in my language for several days.
I try to translate this game into Chinese version.It‘s going successfully,the translation almost finisher,but there were some bugs in the game after I translate it.
I don't why.
All the Single Characters have Significant Other.
I check their detial information ,the info shows their Relationship :Single,but they have Significant Other just like the Married NPC
So the game can't work properly.

I have no idea which rpy file needs to be modified or which code can fix this bug

I REALLY NEED YOUR HELP, PLEASE!!! OTZ
This was the game before translated(modify)it View attachment 2918056
This is the game after translated(modify)it View attachment 2918057 View attachment 2918055
 

Saionji11

Newbie
Jul 1, 2017
30
19
I'm trying to work out how to customize the color of fetish collars, but I'm not having much luck. It was easy with slave collars as I could tie it more easily to roles, but I'm trying to work out how to make it work with specific jobs in the buisiness which is giving me stumbling block after stumbling block.

The base line for the colors is in fetish_serum_quests_ren.py, and looks like:
You don't have permission to view the spoiler content. Log in or register now.
So I've tried referencing job.py, business.py and person.py. Then tried altering the code in a couple ways.

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

and

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

With a few variations on those themes. When I try testing, I get an error saying "TypeError: fetish_add_collar() missing 1 required positional argument: 'collar'".

It's not a big deal, but I'd like to be able to have a bit more control of how the business outfits look. I'm just not sure what I need to reference or recode to make this work. Any suggestions? Thanks!
 
Last edited:

Draculesti

Newbie
May 20, 2019
65
41
Good afternoon,Sir
I learned how to translate a renpy game in my language for several days.
I try to translate this game into Chinese version.It‘s going successfully,the translation almost finisher,but there were some bugs in the game after I translate it.
I don't why.
All the Single Characters have Significant Other.
I check their detial information ,the info shows their Relationship :Single,but they have Significant Other just like the Married NPC
So the game can't work properly.

I have no idea which rpy file needs to be modified or which code can fix this bug

I REALLY NEED YOUR HELP, PLEASE!!! OTZ
This was the game before translated(modify)it View attachment 2918056
This is the game after translated(modify)it View attachment 2918057 View attachment 2918055
The pictures don't really help in helping you. you must have changed some code to archiv this. This changes would be more interessting. But i can make a guess. If you only tried to change how things are displayed in the game you should not have changed the reference in the functions wich is SO_name

if i have to make my guess i would look into the following files
\game\major_game_classes\character_related\Person_ren.py
and
\game\helper_functions\random_generation_functions_ren.py

if they all have the same Significant Other than i would look into
\game\game_screens\business_screens\interview_ui.rpy
and
\game\game_screens\character_screens\girl_overview_ui.rpy

but we are missing so much informations from you, what have you changed, is it an old save you loaded or is it a new playtrough after changing?
 

Ascher

New Member
Aug 8, 2022
10
0
The pictures don't really help in helping you. you must have changed some code to archiv this. This changes would be more interessting. But i can make a guess. If you only tried to change how things are displayed in the game you should not have changed the reference in the functions wich is SO_name

if i have to make my guess i would look into the following files
\game\major_game_classes\character_related\Person_ren.py
and
\game\helper_functions\random_generation_functions_ren.py

if they all have the same Significant Other than i would look into
\game\game_screens\business_screens\interview_ui.rpy
and
\game\game_screens\character_screens\girl_overview_ui.rpy

but we are missing so much informations from you, what have you changed, is it an old save you loaded or is it a new playtrough after changing?
Thank you ,Sir
I've found the reason.
I forgot to modify all the code in other files.
After unifying the code it runs normally.
Maybe I would find other BUG later,it's hard for me to translate this game,whatever,thanks
 
4.70 star(s) 51 Votes