AxelVieyra
Member
- Jul 10, 2021
- 281
- 64
I didn't see this game. Is this the same Lab Rats 2 or is a more complete version with mods or something?
It's essentially the Lab Rats 2 with the main mod completely merged into the game.I didn't see this game. Is this the same Lab Rats 2 or is a more complete version with mods or something?
you need to progress with the story, tutoring and invited to dinner.So are Emily and Cristine Vandenberg just broken now? No matter how corrupt they are and what I try they'll only grope.
The original was abandoned by the developer?It's essentially the Lab Rats 2 with the main mod completely merged into the game.
From Discord FAQ:August update when?
the_person.age =39
the_person.generate_daughter(True)
the_person.kids=the_person.kids +1
for sister in town_relationships.get_existing_children(the_person):
town_relationships.update_relationship(the_person, sister, "Sister")
if not the_person.home in mc.known_home_locations: mc.known_home_locations.append(the_person.home)
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)
the_person.generate_daughter(True)
the_person.kids=the_person.kids +1
the_person.identifier
town_relationships.update_relationship(the_person, 7777 , "Aunt", "Niece")
town_relationships.update_relationship(the_person, mom, "Niece", "Aunt")
this should create a new home and add it to the mapI 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 ?
in console :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)
you are right one of this should bein console :
the_person.home = None
the_person.generate_home
2 last lines are the same:
list_of_places.append(the_person.home)
None
Good afternoon,SirAfter 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.
start adding childrenCode:the_person.age =39
than i try changing there relationship all to sisters (converting the mother to some of them)Code:the_person.generate_daughter(True) the_person.kids=the_person.kids +1
now they are all sisters and we find out where they all liveCode:for sister in town_relationships.get_existing_children(the_person): town_relationships.update_relationship(the_person, sister, "Sister")
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.Code:if not the_person.home in mc.known_home_locations: mc.known_home_locations.append(the_person.home)
the we give them all there own home
now i create the childrenCode: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)
and here is it that i fail ... generating the daughters don`t give them the other Sisters as Aunts nor sets them as niece.Code:the_person.generate_daughter(True) the_person.kids=the_person.kids +1
i looked up there identifier
this gives me a number that is i think unique and should identify the personCode:the_person.identifier
i tried
for purpose of the commando the identifier is 7777
which fails because he doesn`t regocnice the identifier as personCode:town_relationships.update_relationship(the_person, 7777 , "Aunt", "Niece")
i tried some other stuff but the only way the code above worked was like this
which only gives the_person the Aunt but not the aunt the niece.Code:town_relationships.update_relationship(the_person, mom, "Niece", "Aunt")
so i was wondering how must the string look like to use the identifier
大佬,我现在在汉化七月的最新版本有很多问题想交流下,有没有方便的联系方式I decided to translate by myself. I have finished translating the serum and policies
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_nameGood 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
Thank you ,SirThe 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?
Two new BUGs……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?