luwinkle

Member
Jan 14, 2019
362
335
This should fix that (a return was missing so it runs into the next code).

Sames as before, attached a zip, go to the below path in your game dir, rename your role_sister_taboo_quests.rpy to role_sister_taboo_quests.BBBACKUP and extract file in the zip to there. Then load a save from before the crash.

game\game_roles\role_sister\role_sister_taboo_quests.rpy

For those who want to edit the fix themselves:

role_sister_taboo_quests.rpy line 684-ish add the return:
Python:
        "I understand.":
            mc.name "Yeah, I guess that'll have to be enough."
            "[the_person.possessive_title] smiles and breathes a sigh of relief."
            the_person "I was worried you were going to make a big deal out of it."
            the_person "Thanks for being a cool brother [the_person.title]."
            $ the_person.change_slut(-10)
            $ mc.log_event(the_person.title + "'s taboos restored!", "float_text_red")
            # missing return
            return
I haven't seen any other bugs in the taboo quest stuff but I haven't played it all.

I think we're all playing the Patreon test/beta release 46.0, which is why there are bugs. If anyone finds the bugs too frustrating, then might be better to wait for the public fixed release, usually 46.1 in about a week. (I'm not a Patreon any more because I personally don't like the focus on framework over content - just fixing bugs here to let people have fun!)

I love you.
 
  • Red Heart
Reactions: boobthief

Heml0ck

Member
Mar 7, 2018
299
749
This should fix that (a return was missing so it runs into the next code).

Sames as before, attached a zip, go to the below path in your game dir, rename your role_sister_taboo_quests.rpy to role_sister_taboo_quests.BBBACKUP and extract file in the zip to there. Then load a save from before the crash.

game\game_roles\role_sister\role_sister_taboo_quests.rpy

For those who want to edit the fix themselves:

role_sister_taboo_quests.rpy line 684-ish add the return:
Python:
        "I understand.":
            mc.name "Yeah, I guess that'll have to be enough."
            "[the_person.possessive_title] smiles and breathes a sigh of relief."
            the_person "I was worried you were going to make a big deal out of it."
            the_person "Thanks for being a cool brother [the_person.title]."
            $ the_person.change_slut(-10)
            $ mc.log_event(the_person.title + "'s taboos restored!", "float_text_red")
            # missing return
            return
I haven't seen any other bugs in the taboo quest stuff but I haven't played it all.

I think we're all playing the Patreon test/beta release 46.0, which is why there are bugs. If anyone finds the bugs too frustrating, then might be better to wait for the public fixed release, usually 46.1 in about a week. (I'm not a Patreon any more because I personally don't like the focus on framework over content - just fixing bugs here to let people have fun!)
You legend (y)

I hope Vren gets help doing the programming, he often leaves typos in his code
 

eldoen

Member
Jun 30, 2021
460
283
Think it is a time for a month of game balance, the grind to survive without cheats is just so painful now.
 

popfan

Member
Dec 31, 2018
117
22
Got 2 errors after fucking Sis for the first time -

I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/script.rpy", line 275, in script call
$ picked_event[1].call_action(picked_event[0]) #Run the action with the person as an extra argument.
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 683, in script call
call serum_inventory_select_ui(mc.inventory, the_person, batch_size = 10)
File "game/script.rpy", line 275, in script call
$ picked_event[1].call_action(picked_event[0]) #Run the action with the person as an extra argument.
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 683, in script call
call serum_inventory_select_ui(mc.inventory, the_person, batch_size = 10)
ScriptError: could not find label 'serum_inventory_select_ui'.

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "game/script.rpy", line 275, in script call
$ picked_event[1].call_action(picked_event[0]) #Run the action with the person as an extra argument.
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 683, in script call
call serum_inventory_select_ui(mc.inventory, the_person, batch_size = 10)
File "renpy/ast.py", line 1485, in execute
rv = renpy.game.context().call(label, return_site=self.next.name)
File "game/script.rpy", line 275, in script call
$ picked_event[1].call_action(picked_event[0]) #Run the action with the person as an extra argument.
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 683, in script call
call serum_inventory_select_ui(mc.inventory, the_person, batch_size = 10)
File "renpy/script.py", line 918, in lookup
raise ScriptError("could not find label '%s'." % str(original))
ScriptError: could not find label 'serum_inventory_select_ui'.

Windows-10-10.0.19041
Ren'Py 7.4.8.1895
Lab Rats 2 - Down to Business v0.46.0
Fri Nov 5 18:10:31 2021

I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/script.rpy", line 275, in script call
$ picked_event[1].call_action(picked_event[0]) #Run the action with the person as an extra argument.
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 681, in script
label sister_vaginal_taboo_break_revisit_quest_1(the_person):
Exception: Required parameter the_person has no value.

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "game/script.rpy", line 275, in script call
$ picked_event[1].call_action(picked_event[0]) #Run the action with the person as an extra argument.
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 681, in script
label sister_vaginal_taboo_break_revisit_quest_1(the_person):
File "renpy/ast.py", line 864, in execute
values = apply_arguments(self.parameters, renpy.store._args, renpy.store._kwargs)
File "renpy/ast.py", line 159, in apply_arguments
return parameters.apply(args, kwargs, ignore_errors)
File "renpy/ast.py", line 123, in apply
raise Exception("Required parameter %s has no value." % name)
Exception: Required parameter the_person has no value.

Windows-10-10.0.19041
Ren'Py 7.4.8.1895
Lab Rats 2 - Down to Business v0.46.0
Fri Nov 5 18:11:53 2021
 

popfan

Member
Dec 31, 2018
117
22
One more after anal sex

I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/script.rpy", line 275, in script call
$ picked_event[1].call_action(picked_event[0]) #Run the action with the person as an extra argument.
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 500, in script
menu:
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 531, in <module>
"But it keeps happening..." if the_person.event_triggers_dict.get("anal_revisit_count", 0) >= anal_revisit_count:
NameError: name 'anal_revisit_count' is not defined

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "game/script.rpy", line 275, in script call
$ picked_event[1].call_action(picked_event[0]) #Run the action with the person as an extra argument.
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 500, in script
menu:
File "renpy/ast.py", line 1683, in execute
choice = renpy.exports.menu(choices, self.set, args, kwargs, item_arguments)
File "renpy/exports.py", line 1028, in menu
condition = renpy.python.py_eval(condition)
File "renpy/python.py", line 2266, in py_eval
return py_eval_bytecode(code, globals, locals)
File "renpy/python.py", line 2259, in py_eval_bytecode
return eval(bytecode, globals, locals)
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 531, in <module>
"But it keeps happening..." if the_person.event_triggers_dict.get("anal_revisit_count", 0) >= anal_revisit_count:
NameError: name 'anal_revisit_count' is not defined

Windows-10-10.0.19041
Ren'Py 7.4.8.1895
Lab Rats 2 - Down to Business v0.46.0
Fri Nov 5 18:43:14 2021
 

luwinkle

Member
Jan 14, 2019
362
335
This should fix that (a return was missing so it runs into the next code).

Sames as before, attached a zip, go to the below path in your game dir, rename your role_sister_taboo_quests.rpy to role_sister_taboo_quests.BBBACKUP and extract file in the zip to there. Then load a save from before the crash.

game\game_roles\role_sister\role_sister_taboo_quests.rpy

For those who want to edit the fix themselves:

role_sister_taboo_quests.rpy line 684-ish add the return:
Python:
        "I understand.":
            mc.name "Yeah, I guess that'll have to be enough."
            "[the_person.possessive_title] smiles and breathes a sigh of relief."
            the_person "I was worried you were going to make a big deal out of it."
            the_person "Thanks for being a cool brother [the_person.title]."
            $ the_person.change_slut(-10)
            $ mc.log_event(the_person.title + "'s taboos restored!", "float_text_red")
            # missing return
            return
I haven't seen any other bugs in the taboo quest stuff but I haven't played it all.

I think we're all playing the Patreon test/beta release 46.0, which is why there are bugs. If anyone finds the bugs too frustrating, then might be better to wait for the public fixed release, usually 46.1 in about a week. (I'm not a Patreon any more because I personally don't like the focus on framework over content - just fixing bugs here to let people have fun!)

Ahhhhh this fucking gaaaaaaaaaaaame.
 

popfan

Member
Dec 31, 2018
117
22
One more error after selecting I know you want to do more - Like Incest - get this error
I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/script.rpy", line 275, in script call
$ picked_event[1].call_action(picked_event[0]) #Run the action with the person as an extra argument.
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 235, in script
python:
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 237, in <module>
the_person.break_taboo(a_taboo, add_to_log = False, fire_event = False)
TypeError: break_taboo() got an unexpected keyword argument 'fire_event'

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "game/script.rpy", line 275, in script call
$ picked_event[1].call_action(picked_event[0]) #Run the action with the person as an extra argument.
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 235, in script
python:
File "renpy/ast.py", line 923, in execute
renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
File "renpy/python.py", line 2235, in py_exec_bytecode
exec(bytecode, globals, locals)
File "game/game_roles/role_sister/role_sister_taboo_quests.rpy", line 237, in <module>
the_person.break_taboo(a_taboo, add_to_log = False, fire_event = False)
TypeError: break_taboo() got an unexpected keyword argument 'fire_event'

Windows-10-10.0.19041
Ren'Py 7.4.8.1895
Lab Rats 2 - Down to Business v0.46.0
Fri Nov 5 19:03:12 2021
 

popfan

Member
Dec 31, 2018
117
22
Incest with Mom after getting naked

I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/script.rpy", line 275, in script call
$ picked_event[1].call_action(picked_event[0]) #Run the action with the person as an extra argument.
File "game/game_roles/role_mother/role_mother_taboo_quests.rpy", line 169, in script
python:
File "game/game_roles/role_mother/role_mother_taboo_quests.rpy", line 171, in <module>
the_person.break_taboo(a_taboo, add_to_log = False, fire_event = False)
TypeError: break_taboo() got an unexpected keyword argument 'fire_event'

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "game/script.rpy", line 275, in script call
$ picked_event[1].call_action(picked_event[0]) #Run the action with the person as an extra argument.
File "game/game_roles/role_mother/role_mother_taboo_quests.rpy", line 169, in script
python:
File "renpy/ast.py", line 923, in execute
renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
File "renpy/python.py", line 2235, in py_exec_bytecode
exec(bytecode, globals, locals)
File "game/game_roles/role_mother/role_mother_taboo_quests.rpy", line 171, in <module>
the_person.break_taboo(a_taboo, add_to_log = False, fire_event = False)
TypeError: break_taboo() got an unexpected keyword argument 'fire_event'

Windows-10-10.0.19041
Ren'Py 7.4.8.1895
Lab Rats 2 - Down to Business v0.46.0
Fri Nov 5 19:41:51 2021
 

Jamsalad

Active Member
Mar 22, 2018
541
529
This should fix that (a return was missing so it runs into the next code).

Sames as before, attached a zip, go to the below path in your game dir, rename your role_sister_taboo_quests.rpy to role_sister_taboo_quests.BBBACKUP and extract file in the zip to there. Then load a save from before the crash.

game\game_roles\role_sister\role_sister_taboo_quests.rpy

For those who want to edit the fix themselves:

role_sister_taboo_quests.rpy line 684-ish add the return:
Python:
        "I understand.":
            mc.name "Yeah, I guess that'll have to be enough."
            "[the_person.possessive_title] smiles and breathes a sigh of relief."
            the_person "I was worried you were going to make a big deal out of it."
            the_person "Thanks for being a cool brother [the_person.title]."
            $ the_person.change_slut(-10)
            $ mc.log_event(the_person.title + "'s taboos restored!", "float_text_red")
            # missing return
            return
I haven't seen any other bugs in the taboo quest stuff but I haven't played it all.

I think we're all playing the Patreon test/beta release 46.0, which is why there are bugs. If anyone finds the bugs too frustrating, then might be better to wait for the public fixed release, usually 46.1 in about a week. (I'm not a Patreon any more because I personally don't like the focus on framework over content - just fixing bugs here to let people have fun!)
Thank you so much <3

I know this is asking a lot but apparently it's also bugged for when you get Lily to finally accept having sex with you. Any chance you could be a hero again?

This version is so broken , jeez.
 
Last edited:

Diconica

Well-Known Member
Apr 25, 2020
1,100
1,150
No wonder he has so many bugs. He isn't consistent in how he codes stuff.
The function for completing Kissing. Mom's he sets the flags at the bottom end of the function. Sister's he sets at the top.
Then when it comes to starting the oral taboo.
Mom's function line 302 uses if the_person.has_broken_taboo("sucking_cock"):
Sister's function line 200 he uses if "sucking_cock" in the_person.event_triggers_dict.get("oral_revisit_restore_taboos", []):

Even his spacing and where he puts extra lines isn't consistent.
I was thinking I could go through and use t he good code as a hint to fix the stuff that's broken. But at this point I got a headache and my eye's feel like they are bleeding.

It's not that's he is a terrible programmer or something. It's just a bad habit that causes issues.
It's a shame in that he's just creating a lot more work for himself having to go back and clean up such bugs.
 
  • Like
Reactions: Dem and luwinkle

luwinkle

Member
Jan 14, 2019
362
335
No wonder he has so many bugs. He isn't consistent in how he codes stuff.
The function for completing Kissing. Mom's he sets the flags at the bottom end of the function. Sister's he sets at the top.
Then when it comes to starting the oral taboo.
Mom's function line 302 uses if the_person.has_broken_taboo("sucking_cock"):
Sister's function line 200 he uses if "sucking_cock" in the_person.event_triggers_dict.get("oral_revisit_restore_taboos", []):

Even his spacing and where he puts extra lines isn't consistent.
I was thinking I could go through and use t he good code as a hint to fix the stuff that's broken. But at this point I got a headache and my eye's feel like they are bleeding.

It's not that's he is a terrible programmer or something. It's just a bad habit that causes issues.
It's a shame in that he's just creating a lot more work for himself having to go back and clean up such bugs.

Inorite. I've played alpha releases from other major renpy games with fewer game-breaking bugs.
 

vicaddict

Member
Sep 29, 2019
194
391
You better have an energy potion before reading this as it turned out to be a wall of text.

Did he seriously just add more fucking grinding?
Well, the grind is the game, is it not? I don't think we should expect anything other than that at this point. I would even go so far to say that I don't mind grinding in this game and I usually hate grinding.

I have more problems with things that are in the game that will never serve any purpose or aren't even fleshed out. I mean, who cares if a girl likes classical music or hates hiking? Why would I want to know that unless there is a date mechanic that lets me take said girl on a hike or put on some music? And why would I bother taking them on a date, when I want to drug them anyway? Just go to work, have them drink a serum as they're contractually obliged to do so and be done with it. For all I care make the serum yellow, green or pink so it matches the girls favourite colour to get some use out of this personality trait.

Why are there several stores around a general mall, when none of them serve any purpose other than the shopping scene and the new phone purchase? Even for that a general mall would do, so you could use the space for something else. I don't know, like the apartment complex instead of hiding them behind the "visit someone" button maybe? This is a frigging sex game and the sex shop hasn't seen content in how many years of development?

The whole business aspect is just tedious as it has no curve and there is no point to it. First, when you start the game, you have to bee line to certain traits, so you can actually produce and sell a serum for profit. And you better not be hiring girls before that or you might go bankrupt. Once you have researched it, money is no longer a problem. Like it really isn't. There is nothing to spend it on other than business policies and half of them, even the lewd ones, aren't worth it. I never go past 18 employees, because what is the point? Just to add another f*ck doll? The hiring process is a mess and you can't even hire your family at this point. I can only assume that we can do that at some point. Then again, for that you probably want their stats and traits to be hardcoded rather than random.

Going back to the serums: I understand that you want to have a tier system and don't want to give away the best serums right away, then again, some of the higher tier serums are just... pointless? By that time I have corrupted everyone around me anyway, so why would I even bother? Why have different traits that do similar things in the first place? Why not just have like 5 or 6 stats than can be researched and altered and have them applied to the actual serums automatically?
I can only add two traits to a serum? Okay, lets use suggestion and obedience and then autoupgrade it when you improve your mastery levels. At some point I can use three traits? Lets add energy. Whatever.

Maybe use the mastery levels to get rid of side effects or add aditional bonuses rather than having us save scum to not get an effect. Instead I have to scroll through an endless list of traits that has no sorting only to find the bonus I want and add another one, in some cases of the same kind up to a point where I hardly know what traits I have in the first place and what my serums actually do unless I delete the outdated ones. Just let me research trait x and then gradually add a passive percentage to whatever it does.

The game has a lot of potential, but like I said a week ago, I can't really see any difference to what was in the game three years ago or whenever it was released to the public for the first time. I am not saying that the dev doesn't work on it, not at all, but I can't see it. It looks the same, it feels the same and I couldn't tell you a difference, if my life depended on it. Okay, we have animated text now.

You have a rather tough early game, but as soon as you're past that sweet money making spot, there is no endgame. Just a sand box that lets you do certain things, none of them fleshed out.

I like the game. I really do. The grind is somewhat addictive, but at the same time the game is just an empty shell. It is based around the mechanics and they do work very well, even if you can make the case that if you wanted to make such a sex-mechanic than why not go all the way and add more interactions? There are some things that are quite common and are still missing. There are no toys involved, there is no bondage, no fisting, no watersports, no threesome, no having two girls make out or anything of the sort. You don't even need animations for all of it, but if you want to portray a sex system that has depth than give us depth and not just groping>fingering>licking>vagx4>bumming>BJx3.

If you make a game about creating drugs and using them, why can't I go to a random club, drug a girl and have my way with her? I understand, that this is not everyones kink, but if you create a game around drugs and mind alteration than this should be included, don't you think? Otherwise it is just about making a girl fall in love with you faster. It's not like there are girls in the game that won't fall in love with you. That would be a challenge and what the serums are for. At this point they just speed things up that are inevitable and let you enjoy some transformation/corruption to make it even easier in the future.

Again, I like it. But I can't see the longterm vision. Considering this has been in development for a few years now, I highly doubt we'll ever reach the point of a complete game. Not if so much time is spend on mechanics.
 

luwinkle

Member
Jan 14, 2019
362
335
You better have an energy potion before reading this as it turned out to be a wall of text.



Well, the grind is the game, is it not? I don't think we should expect anything other than that at this point. I would even go so far to say that I don't mind grinding in this game and I usually hate grinding.

I have more problems with things that are in the game that will never serve any purpose or aren't even fleshed out. I mean, who cares if a girl likes classical music or hates hiking? Why would I want to know that unless there is a date mechanic that lets me take said girl on a hike or put on some music? And why would I bother taking them on a date, when I want to drug them anyway? Just go to work, have them drink a serum as they're contractually obliged to do so and be done with it. For all I care make the serum yellow, green or pink so it matches the girls favourite colour to get some use out of this personality trait.

Why are there several stores around a general mall, when none of them serve any purpose other than the shopping scene and the new phone purchase? Even for that a general mall would do, so you could use the space for something else. I don't know, like the apartment complex instead of hiding them behind the "visit someone" button maybe? This is a frigging sex game and the sex shop hasn't seen content in how many years of development?

The whole business aspect is just tedious as it has no curve and there is no point to it. First, when you start the game, you have to bee line to certain traits, so you can actually produce and sell a serum for profit. And you better not be hiring girls before that or you might go bankrupt. Once you have researched it, money is no longer a problem. Like it really isn't. There is nothing to spend it on other than business policies and half of them, even the lewd ones, aren't worth it. I never go past 18 employees, because what is the point? Just to add another f*ck doll? The hiring process is a mess and you can't even hire your family at this point. I can only assume that we can do that at some point. Then again, for that you probably want their stats and traits to be hardcoded rather than random.

Going back to the serums: I understand that you want to have a tier system and don't want to give away the best serums right away, then again, some of the higher tier serums are just... pointless? By that time I have corrupted everyone around me anyway, so why would I even bother? Why have different traits that do similar things in the first place? Why not just have like 5 or 6 stats than can be researched and altered and have them applied to the actual serums automatically?
I can only add two traits to a serum? Okay, lets use suggestion and obedience and then autoupgrade it when you improve your mastery levels. At some point I can use three traits? Lets add energy. Whatever.

Maybe use the mastery levels to get rid of side effects or add aditional bonuses rather than having us save scum to not get an effect. Instead I have to scroll through an endless list of traits that has no sorting only to find the bonus I want and add another one, in some cases of the same kind up to a point where I hardly know what traits I have in the first place and what my serums actually do unless I delete the outdated ones. Just let me research trait x and then gradually add a passive percentage to whatever it does.

The game has a lot of potential, but like I said a week ago, I can't really see any difference to what was in the game three years ago or whenever it was released to the public for the first time. I am not saying that the dev doesn't work on it, not at all, but I can't see it. It looks the same, it feels the same and I couldn't tell you a difference, if my life depended on it. Okay, we have animated text now.

You have a rather tough early game, but as soon as you're past that sweet money making spot, there is no endgame. Just a sand box that lets you do certain things, none of them fleshed out.

I like the game. I really do. The grind is somewhat addictive, but at the same time the game is just an empty shell. It is based around the mechanics and they do work very well, even if you can make the case that if you wanted to make such a sex-mechanic than why not go all the way and add more interactions? There are some things that are quite common and are still missing. There are no toys involved, there is no bondage, no fisting, no watersports, no threesome, no having two girls make out or anything of the sort. You don't even need animations for all of it, but if you want to portray a sex system that has depth than give us depth and not just groping>fingering>licking>vagx4>bumming>BJx3.

If you make a game about creating drugs and using them, why can't I go to a random club, drug a girl and have my way with her? I understand, that this is not everyones kink, but if you create a game around drugs and mind alteration than this should be included, don't you think? Otherwise it is just about making a girl fall in love with you faster. It's not like there are girls in the game that won't fall in love with you. That would be a challenge and what the serums are for. At this point they just speed things up that are inevitable and let you enjoy some transformation/corruption to make it even easier in the future.

Again, I like it. But I can't see the longterm vision. Considering this has been in development for a few years now, I highly doubt we'll ever reach the point of a complete game. Not if so much time is spend on mechanics.

Sir, this is a Wendy's.
 
Apr 24, 2020
192
257
I agree with what vicaddict said, the game is pretty much a bunch of mechanics without a narrative to guide the gameplay.

When I played it I was caught off guard by the difficulty in avoiding bankruptcy at the beginning, but it didn't take long to find the strategy of slowly progressing the tech tree with a minimum staff to get a profitable product out the door.
However, once you could afford new hires the game just devolved into hiring more people to increase profit. I was surprised when I realized that I had reached the end of the tech trees and hadn't had to resort to using any serums on my staff.

The game never gives you a real reason to get into the more unethical stuff. Based on the first game I had hoped the use of serums would be the key to expand your business, like dosing officials (to cut through the red tape), inspectors (to ignore the ethics of your business) and rival companies (to seize hostilities or even merging the companies).

Instead the game comes off as a corporate sim with some porn tagged on.
 
  • Like
Reactions: Dem and eldoen
3.40 star(s) 127 Votes