SexGameSluts — Who Will You Fuck First? Play Now!
x

Setcheck64

Member
Jun 1, 2019
152
246
78
how to make rebecca your girlfriend? she always decline and says that what would mom think if she ever find out somrthing like that
It's purposefully blocked for some future content I'd imagine. Just go to line 103 of game_roles > Role_girlfriend and hit enter and add $ the_person.add_role(girlfriend_role). You can also change the dialogue if it's important to you as it's also right there. The aunt acts like a basic girlfriend with the options of trimmed pubes and has the generic dialogue of girlfriend. I didn't do anything special here, because aunt/cousin marriages actually still exist in the modern world and are only really taboo due to a change in world view whereas sister/mom sex was always considered fucked up outside of a few rare instances.
 

boobthief

Member
May 25, 2017
490
1,246
339
lol, defend someone doing less than bare minimum effort while they collect money, I don't care, I didn't pay.
...
It's perfectly reasonable that art and writing are more his skills than programming.
I don't see how you can reconcile these dissonant views.

They are making a game that they release as a full free public version and people enjoy it so they play, discuss over 479 pages here, and some voluntarily support their development with their own money.

You say you didn't pay and say you don't care but you do care enough to post about it.

You appear to be angry that you're not getting compensated for your work. Code reviewing and shitting on someone else's efforts won't help you. Just set up your own tip jar and if people value your efforts they can support you.

I don't understand why people get so upset at other people supporting the games they themselves enjoy playing.
 

On'Jin

Newbie
Oct 10, 2019
31
9
131
I think this is related to this zig posted on the Patreon by Mialamo
Thank you,so i just need to change the line $ special_stripper_hire(stripper_job) to $ special_stripper_hire(the_person) ?

on the file role_cousin, i have that after changing the line :

$ special_stripper_hire(the_person)
$ the_person.change_job(stripper_job) #She's a stripper now, offically.
$ the_person.event_triggers_dict["blackmail_level"] = 2
call begin_boobjob_story(the_person) from _call_begin_boobjob_story_2
return

and i got a new error:
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 228, in script call
    $ talk_action.call_action(picked_option)
  File "game/crises/limited_time_crises/general_LTE.rpy", line 112, in script call
    call talk_person(the_person) from _call_talk_person_10
  File "game/script.rpy", line 382, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in script
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in <module>
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 124, in special_stripper_hire
    strip_club_no_of_strippers += 1 #Increase the list target to account for Gabrielle
UnboundLocalError: local variable 'strip_club_no_of_strippers' referenced before assignment

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

Full traceback:
  File "game/script.rpy", line 228, in script call
    $ talk_action.call_action(picked_option)
  File "game/crises/limited_time_crises/general_LTE.rpy", line 112, in script call
    call talk_person(the_person) from _call_talk_person_10
  File "game/script.rpy", line 382, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in script
    $ special_stripper_hire(the_person)
  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_cousin.rpy", line 791, in <module>
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 124, in special_stripper_hire
    strip_club_no_of_strippers += 1 #Increase the list target to account for Gabrielle
UnboundLocalError: local variable 'strip_club_no_of_strippers' referenced before assignment

Windows-10-10.0.19041
Ren'Py 7.4.8.1895
Lab Rats 2 - Down to Business v0.51.1
Thu Jun  9 13:48:47 2022
i don't know if it's because of the modified line, maybe i don't do it correctly, or if it's because of other thing
 

dalzomo

Active Member
Aug 7, 2016
939
785
306
Thank you,so i just need to change the line $ special_stripper_hire(stripper_job) to $ special_stripper_hire(the_person) ?

on the file role_cousin, i have that after changing the line :

$ special_stripper_hire(the_person)
$ the_person.change_job(stripper_job) #She's a stripper now, offically.
$ the_person.event_triggers_dict["blackmail_level"] = 2
call begin_boobjob_story(the_person) from _call_begin_boobjob_story_2
return

and i got a new error:
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 228, in script call
    $ talk_action.call_action(picked_option)
  File "game/crises/limited_time_crises/general_LTE.rpy", line 112, in script call
    call talk_person(the_person) from _call_talk_person_10
  File "game/script.rpy", line 382, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in script
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in <module>
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 124, in special_stripper_hire
    strip_club_no_of_strippers += 1 #Increase the list target to account for Gabrielle
UnboundLocalError: local variable 'strip_club_no_of_strippers' referenced before assignment

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

Full traceback:
  File "game/script.rpy", line 228, in script call
    $ talk_action.call_action(picked_option)
  File "game/crises/limited_time_crises/general_LTE.rpy", line 112, in script call
    call talk_person(the_person) from _call_talk_person_10
  File "game/script.rpy", line 382, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in script
    $ special_stripper_hire(the_person)
  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_cousin.rpy", line 791, in <module>
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 124, in special_stripper_hire
    strip_club_no_of_strippers += 1 #Increase the list target to account for Gabrielle
UnboundLocalError: local variable 'strip_club_no_of_strippers' referenced before assignment

Windows-10-10.0.19041
Ren'Py 7.4.8.1895
Lab Rats 2 - Down to Business v0.51.1
Thu Jun  9 13:48:47 2022
i don't know if it's because of the modified line, maybe i don't do it correctly, or if it's because of other thing
Is this a new game you began with this update or an old save from a previous version?
 

dalzomo

Active Member
Aug 7, 2016
939
785
306
new game, it's my first time playing, i downloaded the win/linux version on the author post
arright, lemme mess about some more. I've been slowly replaying the first two weeks testing my week 2 walkthrough but I'll push ahead to the blackmail crap. when exactly does this occur? which dialog option or whatever?
 

On'Jin

Newbie
Oct 10, 2019
31
9
131
arright, lemme mess about some more. I've been slowly replaying the first two weeks testing my week 2 walkthrough but I'll push ahead to the blackmail crap. when exactly does this occur? which dialog option or whatever?
So, i'm on month 2 day 4, i see cuz, talk to her via the special action : "Confront her about her stripping": i can go as far has her proposing to let us touch her, here the text: "God, you fucking perv. Fine, if you can keep quiet i might also let you... touch me, deal ?"

just after we said " i think that might be enough" and it's here the game bug, i can't go further, when i click to continue i have the bug report.
 

Setcheck64

Member
Jun 1, 2019
152
246
78
I don't see how you can reconcile these dissonant views.

They are making a game that they release as a full free public version and people enjoy it so they play, discuss over 479 pages here, and some voluntarily support their development with their own money.

You say you didn't pay and say you don't care but you do care enough to post about it.

You appear to be angry that you're not getting compensated for your work. Code reviewing and shitting on someone else's efforts won't help you. Just set up your own tip jar and if people value your efforts they can support you.

I don't understand why people get so upset at other people supporting the games they themselves enjoy playing.
My original post, the one in which you called me an idiot for, is that he can't code. As for why I say it's less than minimum effort, well that's because it is. If there was broken code or even commented out code that doesn't work or even just a statement "This actually doesn't work" then it shows Vren tried/failed/moved on respectively. Instead the model event tells the player "You get +40% value for serums next week" and this doesn't actually happen as at no point does it check for this information or show it would have checked for this information.

It's not free if he's making a little under $3,000 a month while working on it.

I'm actually not angry, you are the one lashing out at my criticisms, which are still valid criticisms whether you choose to agree with them or not. I posted about it, because I was shocked at just how much of the game I had to "fill in the blanks" for which is a rarity even in the porn game community. Usually you're just told up front "This feature is not supported" or "WIP(Work In Progress)".

I'll also note I haven't personally attacked you, but you sure went pretty far to come after me, with an adorable chart and everything. I think some retrospection is merited here if you believe me to be the angry one.
 

Setcheck64

Member
Jun 1, 2019
152
246
78
So, i'm on month 2 day 4, i see cuz, talk to her via the special action : "Confront her about her stripping": i can go as far has her proposing to let us touch her, here the text: "God, you fucking perv. Fine, if you can keep quiet i might also let you... touch me, deal ?"

just after we said " i think that might be enough" and it's here the game bug, i can't go further, when i click to continue i have the bug report.
Check your game\script.rpy at line 561 you should have strip_club_no_of_strippers = 4. This is when that variable gets initialized and the error you're getting states the variable never got initialized. You can pull up the console and just manually set $ strip_club_no_of_strippers = (whatever number of strippers there is) and the event will progress as normal when you try again.
 

On'Jin

Newbie
Oct 10, 2019
31
9
131
Check your game\script.rpy at line 561 you should have strip_club_no_of_strippers = 4. This is when that variable gets initialized and the error you're getting states the variable never got initialized. You can pull up the console and just manually set $ strip_club_no_of_strippers = (whatever number of strippers there is) and the event will progress as normal when you try again.
Hello,

I changed the game\script.rpy line 561, here what it look now :
$ strip_club_no_of_strippers = 5

But doesn't seem to work, i have the même report bug :
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 228, in script call
    $ talk_action.call_action(picked_option)
  File "game/crises/limited_time_crises/general_LTE.rpy", line 112, in script call
    call talk_person(the_person) from _call_talk_person_10
  File "game/script.rpy", line 382, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in script
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in <module>
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 124, in special_stripper_hire
    strip_club_no_of_strippers += 1 #Increase the list target to account for Gabrielle
UnboundLocalError: local variable 'strip_club_no_of_strippers' referenced before assignment

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

Full traceback:
  File "game/script.rpy", line 228, in script call
    $ talk_action.call_action(picked_option)
  File "game/crises/limited_time_crises/general_LTE.rpy", line 112, in script call
    call talk_person(the_person) from _call_talk_person_10
  File "game/script.rpy", line 382, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in script
    $ special_stripper_hire(the_person)
  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_cousin.rpy", line 791, in <module>
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 124, in special_stripper_hire
    strip_club_no_of_strippers += 1 #Increase the list target to account for Gabrielle
UnboundLocalError: local variable 'strip_club_no_of_strippers' referenced before assignment

Windows-10-10.0.19041
Ren'Py 7.4.8.1895
Lab Rats 2 - Down to Business v0.51.1
Fri Jun 10 12:39:12 2022
When you say "you can pull up the console" i guess you're talking in game, with shift + o ? if it's the case i tried that too, in case, but don't work
 

Setcheck64

Member
Jun 1, 2019
152
246
78
Hello,

I changed the game\script.rpy line 561, here what it look now :
$ strip_club_no_of_strippers = 5

But doesn't seem to work, i have the même report bug :
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 228, in script call
    $ talk_action.call_action(picked_option)
  File "game/crises/limited_time_crises/general_LTE.rpy", line 112, in script call
    call talk_person(the_person) from _call_talk_person_10
  File "game/script.rpy", line 382, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in script
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in <module>
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 124, in special_stripper_hire
    strip_club_no_of_strippers += 1 #Increase the list target to account for Gabrielle
UnboundLocalError: local variable 'strip_club_no_of_strippers' referenced before assignment

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

Full traceback:
  File "game/script.rpy", line 228, in script call
    $ talk_action.call_action(picked_option)
  File "game/crises/limited_time_crises/general_LTE.rpy", line 112, in script call
    call talk_person(the_person) from _call_talk_person_10
  File "game/script.rpy", line 382, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in script
    $ special_stripper_hire(the_person)
  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_cousin.rpy", line 791, in <module>
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 124, in special_stripper_hire
    strip_club_no_of_strippers += 1 #Increase the list target to account for Gabrielle
UnboundLocalError: local variable 'strip_club_no_of_strippers' referenced before assignment

Windows-10-10.0.19041
Ren'Py 7.4.8.1895
Lab Rats 2 - Down to Business v0.51.1
Fri Jun 10 12:39:12 2022
When you say "you can pull up the console" i guess you're talking in game, with shift + o ? if it's the case i tried that too, in case, but don't work
Unfortunately changing script.rpy doesn't help here, because your game already initialized. It would prevent it in future new games, but not your currently active one. Console should work though. Post your save and I'll see if there is more going on than an initialization error.
 

dalzomo

Active Member
Aug 7, 2016
939
785
306
Hello,

I changed the game\script.rpy line 561, here what it look now :
$ strip_club_no_of_strippers = 5

But doesn't seem to work, i have the même report bug :
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 228, in script call
    $ talk_action.call_action(picked_option)
  File "game/crises/limited_time_crises/general_LTE.rpy", line 112, in script call
    call talk_person(the_person) from _call_talk_person_10
  File "game/script.rpy", line 382, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in script
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in <module>
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 124, in special_stripper_hire
    strip_club_no_of_strippers += 1 #Increase the list target to account for Gabrielle
UnboundLocalError: local variable 'strip_club_no_of_strippers' referenced before assignment

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

Full traceback:
  File "game/script.rpy", line 228, in script call
    $ talk_action.call_action(picked_option)
  File "game/crises/limited_time_crises/general_LTE.rpy", line 112, in script call
    call talk_person(the_person) from _call_talk_person_10
  File "game/script.rpy", line 382, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_cousin.rpy", line 791, in script
    $ special_stripper_hire(the_person)
  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_cousin.rpy", line 791, in <module>
    $ special_stripper_hire(the_person)
  File "game/game_roles/role_cousin.rpy", line 124, in special_stripper_hire
    strip_club_no_of_strippers += 1 #Increase the list target to account for Gabrielle
UnboundLocalError: local variable 'strip_club_no_of_strippers' referenced before assignment

Windows-10-10.0.19041
Ren'Py 7.4.8.1895
Lab Rats 2 - Down to Business v0.51.1
Fri Jun 10 12:39:12 2022
When you say "you can pull up the console" i guess you're talking in game, with shift + o ? if it's the case i tried that too, in case, but don't work
So, everything I've read says this is a bit of a dirty "fix", but I tried it and it appears to work. I didn't get the crash, Gabby's job changed to "Stripper", and when I opened console and typed print strip_club_no_of_strippers after the dialog ended it returned 5, which is what it should theoretically be if it incremented properly

I added two lines to role_cousin.rpy, one at line 124 and another at what will be line 129 after the first line is added. So the block between lines 123-131 should look like
Code:
    def special_stripper_hire(the_person):
        global strip_club_no_of_strippers #defining the global keyword to prevent crash bug? ~dalzomo
        strip_club_no_of_strippers += 1 #Increase the list target to account for Gabrielle
        stripper_hire(the_person) #Add her to the stripper list

    def special_stripper_leave(the_person):
        global strip_club_no_of_strippers #defining the global keyword to prevent crash bug? ~dalzomo
        strip_club_no_of_strippers -= 1 #Decrease the list target to account for Gabrielle leaving
        stripper_replace(the_person) #Remove her from the pool and generate a replacement if necessary
Remember to space, not tab, while editing
 
  • Like
Reactions: eldoen

On'Jin

Newbie
Oct 10, 2019
31
9
131
]
Unfortunately changing script.rpy doesn't help here, because your game already initialized. It would prevent it in future new games, but not your currently active one. Console should work though. Post your save and I'll see if there is more going on than an initialization error.
Hello, here one save, you just have to skip the mom scene and gabrielle is in her chamber, i really appreciate the help, but the solution posted by dalzomo under you're post seems to work, i don't crash anymore when talking with gabrielle about her stripping, so don't put too much time with my save, unless you like to investigate :p

In any case, thank you again :)

, View attachment 1-1-LT1.save

So, everything I've read says this is a bit of a dirty "fix", but I tried it and it appears to work. I didn't get the crash, Gabby's job changed to "Stripper", and when I opened console and typed print strip_club_no_of_strippers after the dialog ended it returned 5, which is what it should theoretically be if it incremented properly

I added two lines to role_cousin.rpy, one at line 124 and another at what will be line 129 after the first line is added. So the block between lines 123-131 should look like
Code:
    def special_stripper_hire(the_person):
        global strip_club_no_of_strippers #defining the global keyword to prevent crash bug? ~dalzomo
        strip_club_no_of_strippers += 1 #Increase the list target to account for Gabrielle
        stripper_hire(the_person) #Add her to the stripper list

    def special_stripper_leave(the_person):
        global strip_club_no_of_strippers #defining the global keyword to prevent crash bug? ~dalzomo
        strip_club_no_of_strippers -= 1 #Decrease the list target to account for Gabrielle leaving
        stripper_replace(the_person) #Remove her from the pool and generate a replacement if necessary
Remember to space, not tab, while editing
Hello, this solution seems to work ! i modified the role_cousin.rpy with this code and i no longer crash when talking with gabrielle about her stripping,as you say her job change to stripper too, so it's seems to be all good !


thanks for the help, i really appreciate it :)
 
  • Like
Reactions: eldoen and dalzomo

eldoen

Member
Jun 30, 2021
460
283
141
So, everything I've read says this is a bit of a dirty "fix", but I tried it and it appears to work. I didn't get the crash, Gabby's job changed to "Stripper", and when I opened console and typed print strip_club_no_of_strippers after the dialog ended it returned 5, which is what it should theoretically be if it incremented properly

I added two lines to role_cousin.rpy, one at line 124 and another at what will be line 129 after the first line is added. So the block between lines 123-131 should look like
Code:
    def special_stripper_hire(the_person):
        global strip_club_no_of_strippers #defining the global keyword to prevent crash bug? ~dalzomo
        strip_club_no_of_strippers += 1 #Increase the list target to account for Gabrielle
        stripper_hire(the_person) #Add her to the stripper list

    def special_stripper_leave(the_person):
        global strip_club_no_of_strippers #defining the global keyword to prevent crash bug? ~dalzomo
        strip_club_no_of_strippers -= 1 #Decrease the list target to account for Gabrielle leaving
        stripper_replace(the_person) #Remove her from the pool and generate a replacement if necessary
Remember to space, not tab, while editing
I will have to review what was done in mod to resolve this as it was an issue in 49.9, unassigned jobs was causing all kinds of integration issues.
 
  • Like
Reactions: dalzomo

Kenarius90

Member
May 18, 2020
138
98
170
There was a problem, a check comes to work every day, I corrupted that girl, opened almost all the functions, began to meet with her, but she doesn't come to work for me, says I'm not working for money, what to do??? Tell me please
 

boobthief

Member
May 25, 2017
490
1,246
339
My original post, the one in which you called me an idiot for, is that he can't code.
I didn't call you an idiot. I question your negativity and cognitive dissonance because I think you are intelligent but wrong.

You keep stating Vren can't code but clearly they have created a successful game because people play, enjoy, and support it.

My objection is that you are shitting on a developer working on their project.

As for why I say it's less than minimum effort, well that's because it is. If there was broken code or even commented out code that doesn't work or even just a statement "This actually doesn't work" then it shows Vren tried/failed/moved on respectively. Instead the model event tells the player "You get +40% value for serums next week" and this doesn't actually happen as at no point does it check for this information or show it would have checked for this information.
I've been following the codebase off an on for more than one year. They typically stub out a lot of features and return to flesh it out later. You didn't find an example of the developer doing minimum effort you found work in progress.

It's not free if he's making a little under $3,000 a month while working on it.
That's disingenuous. There is a free full version. Typically reliably released with new features every single month. Tell me you're not one of those people who believe that developers should make something people enjoy, use, and value and want to support but developers don't deserve any financial help. Not even your money (you never paid) but you're upset that other people want to support their work with their hard earned money. This sounds like rank jealousy. Essentially trying to cancel their project? Is that you? Is that who you want to be?

I'm actually not angry, you are the one lashing out at my criticisms, which are still valid criticisms whether you choose to agree with them or not. I posted about it, because I was shocked at just how much of the game I had to "fill in the blanks" for which is a rarity even in the porn game community. Usually you're just told up front "This feature is not supported" or "WIP(Work In Progress)".
The making it clear it's WIP is a valid criticism and suggestion, in my opinion. Making that suggestion in a positive way could improve the game you care about. A while ago, I suggested unit tests to catch some frequent bugs. To their credit, they added some test coverage. Doesn't fit your narrative about their "minimum effort", does it?

I'll also note I haven't personally attacked you, but you sure went pretty far to come after me, with an adorable chart and everything. I think some retrospection is merited here if you believe me to be the angry one.
Yes, you seem perfectly reasonable. I think you have a negatively hot take worthy of introspection. If I saw someone shitting on your efforts and work I would react same.
 
  • Like
Reactions: Clutchfrog

Gee2

Newbie
Jun 23, 2020
26
12
54
hi

Is that a planned function or a bug. When i let someone test a serum i can use all my stamina with talk/complimet or flirt to repeat the growing 0,2 mastery points for the tested serum. That is in my eyes much to much becauce i jump in one month to advanced serums and i am looking to get the futuristic serums soon.
 
3.40 star(s) 127 Votes