Shazam9834

New Member
Jul 8, 2018
4
0
Can someone help with this error? The game crashes and brings this up whenever I try to do anything past groping with any character in the game.

Code:
Full traceback:
  File "renpy/bootstrap.py", line 326, in bootstrap
    renpy.main.main()
  File "renpy/main.py", line 617, in main
    run(restart)
  File "renpy/main.py", line 148, in run
    renpy.execution.run_context(True)
  File "renpy/execution.py", line 922, in run_context
    context.run()
  File "game/script.rpy", line 245, in script call
    call talk_person(picked_option) from _call_talk_person
  File "game/script.rpy", line 364, in script call
    call talk_person(the_person) from _call_talk_person_1 #If we're in the same place and time hasn't advanced keep talking to them until we stop talking on purpose.
  File "game/script.rpy", line 361, in script call
    $ _return.call_action()
  File "game/general_actions/interaction_actions/chat_actions.rpy", line 856, in script call
    call fuck_person(the_person, private = should_be_private, start_position = standing_grope, start_object = None, skip_intro = True) from _call_fuck_person_43 # Enter the sex system, starting from this point.
  File "game/sex_mechanics.rpy", line 202, in script call
    call check_position_willingness(the_person, position_choice, ignore_taboo = ignore_taboo, skip_condom = skip_condom) from _call_check_position_willingness
  File "game/sex_mechanics.rpy", line 457, in script call
    $ the_person.call_dialogue("sex_accept")
  File "game/personality_types/unique_personalities/lily_personality.rpy", line 393, in script
    the_person "Okay, let's do it. Just make sure Mom never finds out, okay?"
  File "game/script.rpy", line 245, in script call
    call talk_person(picked_option) from _call_talk_person
  File "game/script.rpy", line 364, in script call
    call talk_person(the_person) from _call_talk_person_1 #If we're in the same place and time hasn't advanced keep talking to them until we stop talking on purpose.
  File "game/script.rpy", line 361, in script call
    $ _return.call_action()
  File "game/general_actions/interaction_actions/chat_actions.rpy", line 856, in script call
    call fuck_person(the_person, private = should_be_private, start_position = standing_grope, start_object = None, skip_intro = True) from _call_fuck_person_43 # Enter the sex system, starting from this point.
  File "game/sex_mechanics.rpy", line 202, in script call
    call check_position_willingness(the_person, position_choice, ignore_taboo = ignore_taboo, skip_condom = skip_condom) from _call_check_position_willingness
  File "game/sex_mechanics.rpy", line 457, in script call
    $ the_person.call_dialogue("sex_accept")
  File "game/personality_types/unique_personalities/lily_personality.rpy", line 393, in script
    the_person "Okay, let's do it. Just make sure Mom never finds out, okay?"
  File "renpy/ast.py", line 724, in execute
    renpy.exports.say(who, what, *args, **kwargs)
  File "renpy/exports.py", line 1417, in say
    who(what, *args, **kwargs)
  File "game/major_game_classes/character_related/Person.rpy", line 271, in __call__
    self.char(what, *args, **kwargs)
  File "renpy/character.py", line 1219, in __call__
    self.do_display(who, what, cb_args=self.cb_args, dtt=dtt, **display_args)
  File "renpy/character.py", line 871, in do_display
    **display_args)
  File "renpy/character.py", line 621, in display_say
    rv = renpy.ui.interact(mouse='say', type=type, roll_forward=roll_forward)
  File "renpy/ui.py", line 298, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "renpy/display/core.py", line 3213, in interact
    repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs)
  File "renpy/display/core.py", line 3630, in interact_core
    root_widget.visit_all(lambda i : i.per_interact())
  File "renpy/display/core.py", line 567, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/core.py", line 567, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/core.py", line 567, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/screen.py", line 432, in visit_all
    callback(self)
  File "renpy/display/core.py", line 3630, in <lambda>
    root_widget.visit_all(lambda i : i.per_interact())
  File "renpy/display/screen.py", line 443, in per_interact
    self.update()
  File "renpy/display/screen.py", line 631, in update
    self.screen.function(**self.scope)
  File "game/game_screens/hud_screens/person_info_hud.rpy", line 1, in execute
    screen person_info_ui(the_person, display_layer = "solo"): #Used to display stats for a person while you're talking to them.
  File "game/game_screens/hud_screens/person_info_hud.rpy", line 1, in execute
    screen person_info_ui(the_person, display_layer = "solo"): #Used to display stats for a person while you're talking to them.
  File "game/game_screens/hud_screens/person_info_hud.rpy", line 5, in execute
    python:
  File "game/game_screens/hud_screens/person_info_hud.rpy", line 24, in <module>
    positive_effects += get_coloured_arrow(1)+get_red_heart(the_person.situational_sluttiness[situation][0])+" - " + the_person.situational_sluttiness[situation][1] + "\n"
  File "game/helper_functions/heart_formatting_functions.rpy", line 7, in get_red_heart
    the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.
  File "game/helper_functions/heart_formatting_functions.rpy", line 7, in get_red_heart
    the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.
  File "game/helper_functions/heart_formatting_functions.rpy", line 7, in get_red_heart
    the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.
  File "game/helper_functions/heart_formatting_functions.rpy", line 7, in get_red_heart
    the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.
  File "game/helper_functions/heart_formatting_functions.rpy", line 7, in get_red_heart
    the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.
  File "game/helper_functions/heart_formatting_functions.rpy", line 7, in get_red_heart
    the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.
  File "game/helper_functions/heart_formatting_functions.rpy", line 5, in get_red_heart
    if sluttiness >= 20:
RuntimeError: maximum recursion depth exceeded in cmp
 

Darkace

Member
Sep 4, 2018
110
69
I would probably just use console commands, or better yet the mod set to modify these values. If you install the mod set from the github it has a character modifier you can access by pressing 'x' when talking to the character you want to modify.
i am unfamiliar with the mod/'s. if you are not talking about the mod listed any chance for a link on that. oh will the change's made by this mod be by scene or last entire game?
 

Darkace

Member
Sep 4, 2018
110
69
i had great hope for this game after the 1st one. i don't see much of a story line from the last i looked and the images of the main character's here are not to the 1st :(.

also will the dev ever change out that horrible city map and make a real environment for the game. "location travel option" this screen just cry out make me pretty make me whole and expand the house/'s room/'s. the auntie doesn't have to sleep in the living room in her new place and i don't take a shower with no room lol.

my suggestion's and rant , try to mirror the landscape of travel you had in the first game. it was easy smooth a little grind here and there. but not hard to get. this game i can go anywhere in my shorts, traveling feels like a teleport.

if you want sex to be timed add more periods of the day. so make 8 main periods of the day. that can but split in 4's so you cover 24 hrs. if you are putting this much effort into this make the game playable for months or even years in game.
 
  • Like
Reactions: kagekami42

NotaBullRobo

Newbie
Nov 24, 2017
36
57
I've been following since this since the thread started, but honestly I think I'm going to stop. At this point it just kind of feels so directionless. I get the sandbox element means that inherently it will go all over the place, but so many core features are still being modified, and playing the game just feels weird now. You can be a god, making a girl orgasm four times in a single session... and they may still refuse to fuck you as orgasms don't provide any increase in stats aside from that new chance to mind control them. You could see them naked countless times and still have them being like "no, don't take off my panties, that's weird/not allowed".

The fashion part of the game is a (weirdly) large part of it, yet there's still a good deal of clipping issues, and for whatever reason transparency doesn't play into sluttiness at all. It was funny the first few times to have a girl wear something completely see-through and them act normal, but that was just the novelty of the game being in progress. It's been long enough that its just kinda awkward now.

Also energy is weird. Sure you can increase your own cap, but the recovery of it shouldn't be nearly that slow. At least give us the option to spend money to buy energy drinks or something. Hell, why are gifts just not a thing in general? We can forcibly "give" clothing to women if their stat is high enough, but we can't just go to the store, purchase some, and offer it? Money in general seems to have little purpose aside from increasing the size of your business (and dates which become trivial). We have all these stores on the map, but none of them actually do anything (aside from import file, which honestly isn't a store function).

The writing for the sex scenes is good, but the scenes themselves have been largely unchanged this whole time. No new positions, and plenty of the existing ones are just repeats with different text. Model wise we still have the same core models we've always had (not sure if this is actually a planned change but worth pointing out).

Adding clarity was fine. Tying clarity to research was fucking weird. I can accept it being there to sort of slow down your progress, but its kind of nonsense I need to jack off in order to research how to do use my drug for medicinal purposes. I also wonder why its only treated like a resource and not a feature. If it's supposed to represent how backed up I am, why doesn't it affect the way I behave? Shouldn't it at least have an affect on your own arousal stat?

I can forgive a lot of things about the UI and bugs and balance (dates are OP as fuck but honestly thats fine), but the core game still hasn't progressed much worth noting in a long time, and new features as pretty stagnant.
 

Diconica

Well-Known Member
Apr 25, 2020
1,100
1,150
I've been following since this since the thread started, but honestly I think I'm going to stop. At this point it just kind of feels so directionless. I get the sandbox element means that inherently it will go all over the place, but so many core features are still being modified, and playing the game just feels weird now. You can be a god, making a girl orgasm four times in a single session... and they may still refuse to fuck you as orgasms don't provide any increase in stats aside from that new chance to mind control them. You could see them naked countless times and still have them being like "no, don't take off my panties, that's weird/not allowed".

The fashion part of the game is a (weirdly) large part of it, yet there's still a good deal of clipping issues, and for whatever reason transparency doesn't play into sluttiness at all. It was funny the first few times to have a girl wear something completely see-through and them act normal, but that was just the novelty of the game being in progress. It's been long enough that its just kinda awkward now.

Also energy is weird. Sure you can increase your own cap, but the recovery of it shouldn't be nearly that slow. At least give us the option to spend money to buy energy drinks or something. Hell, why are gifts just not a thing in general? We can forcibly "give" clothing to women if their stat is high enough, but we can't just go to the store, purchase some, and offer it? Money in general seems to have little purpose aside from increasing the size of your business (and dates which become trivial). We have all these stores on the map, but none of them actually do anything (aside from import file, which honestly isn't a store function).

The writing for the sex scenes is good, but the scenes themselves have been largely unchanged this whole time. No new positions, and plenty of the existing ones are just repeats with different text. Model wise we still have the same core models we've always had (not sure if this is actually a planned change but worth pointing out).

Adding clarity was fine. Tying clarity to research was fucking weird. I can accept it being there to sort of slow down your progress, but its kind of nonsense I need to jack off in order to research how to do use my drug for medicinal purposes. I also wonder why its only treated like a resource and not a feature. If it's supposed to represent how backed up I am, why doesn't it affect the way I behave? Shouldn't it at least have an affect on your own arousal stat?

I can forgive a lot of things about the UI and bugs and balance (dates are OP as fuck but honestly thats fine), but the core game still hasn't progressed much worth noting in a long time, and new features as pretty stagnant.
In general I agree with nearly everything you say.
Clarity may have had the purpose to slow things down I haven't found it to be effective. I can get to the company being solvent in the same time as previously. In fact I can gain clarity faster than money at the start. Just following the method I put in the guide.
The out fit manager isn't bad but it would make more sense if you had to go to the store and buy it or take the girl shopping and suggest the outfit while at the shop. That would act as a money sink and slow the progress far better than clarity.
Right now I can make an outfit with no panties and use it to move the sex along faster given the stats used in the guide.
You may loose a few points happiness when you push mom to do something she doesn't want to but you gain it back fast enough every time you get her to orgasm. Get her to do so more than one time and you can cover a pretty large happiness loss. It only takes a few times before the benefits exceed the cost of the means. Plus you manage to break the taboos.

As you said a lot of stuff doesn't make sense in the way it happens. It could make sense if there was something else driving her to feel what she did was wrong such as some sort of shame factor. But there isn't that sort of mechanic in the game.
What is really bad is you go on a date with a girl she can turn into a level 10 slut at the end of the night that you couldn't please with a jack hammer and the next day she won't even kiss you.

I figure the only thing we can do is hope that some of the issues get fixed over time in the game. That or your option is create a mod or write your own game.
 
  • Like
Reactions: redraw

Horrible

Member
Jan 23, 2017
124
179
Adding clarity was fine. Tying clarity to research was fucking weird. I can accept it being there to sort of slow down your progress, but its kind of nonsense I need to jack off in order to research how to do use my drug for medicinal purposes.
Agreed. Orgasm=clarity points to begin researching or developing drugs is weird, especially in the context of a game about pharmaceuticals--even sci-fi/porn pharmaceuticals. I guess Dr. Salk was just whackin' it all the time. I can see clarity as a resource to affect girls in a trance state. It's still awkward, but it makes some sort of weird sense as a game mechanic. Overall, though, it just adds another kind of grind to the already grind-y game.
 
  • Like
Reactions: kagekami42

popfan

Member
Dec 31, 2018
117
22
With this new system of sluttiness, how is it possible to increase someone's sluttiness without prepaired serums? For example I'm stuck at 65 with the cousin, nothing increases it anymore. And with this new system, not even sex.
you have get her to love you - then you can have sex with her
 

redraw

Member
Apr 6, 2019
131
285
I'd interpreted 'clarity' to be a currency of attention.

That is, can't get anything done because one has too much horn on the brain.

Though that might make more sense if clarity was an upper limit which gradually decayed due to arousal, until you cleared the register again, limiting what the player can focus on until that time.

Perhaps 'inspiration' might be a better angle.
 

Chameleo

Member
May 20, 2017
388
396
you have get her to love you - then you can have sex with her
That's stupid. Before it was possible to make her want to have sex with you even without love. To some degree it is possible even now, but there is no way how to increase the sluttiness.
 

Diconica

Well-Known Member
Apr 25, 2020
1,100
1,150
Is there a way to mod this to add in your own outfits?
Yes
If you mean just adding an out fit created from the outfit manager sure.
If you mean adding an entirely new clothing type also yes.
The first of those is much easier. You can create an outfit in the outfit manager.
If you are looking to modify start wardrobes they are found under games/wardrobes in XML files

If you want to add a new article of clothing. Well its a bit harder but it can be done.
You will need to make the 600 images needed for each out fit.
You need to create image for each breast and body size(40). Then do that for each type of standing and sex position(15).
15*40 = 600.
Those will need to be placed in their perspective folders under game\images\character_images
You will then need to modify clothing_lists.rpy and clothing_offsets.rpy
As for how you will make those new clothing images I'll leave that up to you I can think of a few ways.
 
  • Like
Reactions: redraw

Klolita

Member
Jul 23, 2017
103
97
Yes
If you mean just adding an out fit created from the outfit manager sure.
If you mean adding an entirely new clothing type also yes.
The first of those is much easier. You can create an outfit in the outfit manager.
If you are looking to modify start wardrobes they are found under games/wardrobes in XML files

If you want to add a new article of clothing. Well its a bit harder but it can be done.
You will need to make the 600 images needed for each out fit.
You need to create image for each breast and body size(40). Then do that for each type of standing and sex position(15).
15*40 = 600.
Those will need to be placed in their perspective folders under game\images\character_images
You will then need to modify clothing_lists.rpy and clothing_offsets.rpy
As for how you will make those new clothing images I'll leave that up to you I can think of a few ways.
I have the means to make the clothing but just needed to know what to edit
Can i edit the characters the same way? Was looking for their base sprites but not sure if their in the standing folders or not
Beyond the amount I'd need to make, theoretically all I'd need to do is rename stuff to the default names the game picks up?
 

Diconica

Well-Known Member
Apr 25, 2020
1,100
1,150
I have the means to make the clothing but just needed to know what to edit
Can i edit the characters the same way? Was looking for their base sprites but not sure if their in the standing folders or not
Beyond the amount I'd need to make, theoretically all I'd need to do is rename stuff to the default names the game picks up?
The character bodies are stored in the same files along with faces and so on. So I suspect you can you'll just need to figure out what rpy whiles and so on need to be edited that I haven't looked into.
 
  • Like
Reactions: Klolita

Tempmania

Newbie
Mar 22, 2018
34
43
The fashion part of the game is a (weirdly) large part of it, yet there's still a good deal of clipping issues, and for whatever reason transparency doesn't play into sluttiness at all. It was funny the first few times to have a girl wear something completely see-through and them act normal, but that was just the novelty of the game being in progress. It's been long enough that its just kinda awkward now.


Agreed. Orgasm=clarity points to begin researching or developing drugs is weird, especially in the context of a game about pharmaceuticals--even sci-fi/porn pharmaceuticals. I guess Dr. Salk was just whackin' it all the time. I can see clarity as a resource to affect girls in a trance state. It's still awkward, but it makes some sort of weird sense as a game mechanic. Overall, though, it just adds another kind of grind to the already grind-y game.
Same here. Clarity as a Trance resource makes sense and I kinda like it actually. But tying it to research is frustrating at best. Hopefully the modders can make it optional there.
 
Last edited:

boblicticious

Member
Jun 16, 2017
294
586
i am unfamiliar with the mod/'s. if you are not talking about the mod listed any chance for a link on that. oh will the change's made by this mod be by scene or last entire game?
The mod set can be downloaded from the github here:



If you aren't familiar with github, the green "code" dropdown has an option to download the zip file.

It has a readme included, you'll need to also install the bugfix mod (which is linked to in the readme).



More importantly though, the mod set is not yet updated for .43.1, so you'll want to wait for the .43.1 commit if you are using LR2 .43.1

To answer your question, changes made with this feature of the mod set are permanent to the character, but ONLY on the save on which you made the change. A new game will re-initialize the mother and sister to Vren's default and you'd have to make whatever updates you want to make again for that new save.
 
Last edited:
  • Like
Reactions: Darkace

dalzomo

Active Member
Aug 7, 2016
885
716
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/sex_mechanics.rpy", line 590, in <module>
  File "game/major_game_classes/character_related/Person.rpy", line 1820, in run_orgasm
NameError: global name 'trance_role' is not defined

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

Full traceback:
  File "script.rpyc", line 288, in script call
  File "script.rpyc", line 401, in script call
  File "game_roles/role_affair.rpyc", line 118, in script call
  File "game_roles/role_affair.rpyc", line 141, in script call
  File "sex_mechanics.rpyc", line 230, in script call
  File "sex_mechanics.rpyc", line 590, in script
  File "renpy/ast.py", line 934, in execute
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/python.py", line 2218, in py_exec_bytecode
  File "game/sex_mechanics.rpy", line 590, in <module>
  File "game/major_game_classes/character_related/Person.rpy", line 1820, in run_orgasm
NameError: global name 'trance_role' is not defined
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 345, in <module>
  File "game/helper_functions/misc_helpers.rpy", line 9, in sort_display_list
  File "game/major_game_classes/game_logic/Action.rpy", line 61, in is_action_enabled
  File "game/major_game_classes/game_logic/Action.rpy", line 58, in check_requirement
  File "game/game_roles/role_girlfriend.rpy", line 5, in ask_girlfriend_requirement
  File "game/major_game_classes/character_related/Person.rpy", line 2109, in has_role
  File "game/major_game_classes/game_logic/Role.rpy", line 88, in check_looks_like
AttributeError: 'Role' object has no attribute 'looks_like'

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

Full traceback:
  File "script.rpyc", line 245, in script call
  File "script.rpyc", line 333, in script
  File "renpy/ast.py", line 934, in execute
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/python.py", line 2218, in py_exec_bytecode
  File "game/script.rpy", line 345, in <module>
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/python.py", line 875, in do_mutation
  File "game/helper_functions/misc_helpers.rpy", line 9, in sort_display_list
  File "game/major_game_classes/game_logic/Action.rpy", line 61, in is_action_enabled
  File "game/major_game_classes/game_logic/Action.rpy", line 58, in check_requirement
  File "game/game_roles/role_girlfriend.rpy", line 5, in ask_girlfriend_requirement
  File "game/major_game_classes/character_related/Person.rpy", line 2109, in has_role
  File "game/major_game_classes/game_logic/Role.rpy", line 88, in check_looks_like
AttributeError: 'Role' object has no attribute 'looks_like'
One more

Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "renpy/common/000statements.rpy", line 569, in execute_call_screen
  File "game/screens.rpy", line 282, in execute
  File "game/screens.rpy", line 282, in execute
  File "game/screens.rpy", line 287, in execute
  File "game/screens.rpy", line 293, in execute
  File "game/screens.rpy", line 294, in execute
  File "game/screens.rpy", line 299, in execute
  File "game/screens.rpy", line 302, in execute
Exception: Not a displayable: <store.Action object at 0x7c8a5e9810>

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

Full traceback:
  File "script.rpyc", line 245, in script call
  File "script.rpyc", line 354, in script
  File "renpy/ast.py", line 1981, in execute
  File "renpy/ast.py", line 1969, in call
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/statements.py", line 278, in call
  File "renpy/common/000statements.rpy", line 569, in execute_call_screen
  File "renpy/exports.py", line 3057, in call_screen
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/ui.py", line 298, in interact
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/display/core.py", line 3213, in interact
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/display/core.py", line 3630, in interact_core
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/display/core.py", line 567, in visit_all
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/display/core.py", line 567, in visit_all
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/display/core.py", line 567, in visit_all
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/display/screen.py", line 432, in visit_all
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/display/core.py", line 3630, in <lambda>
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/display/screen.py", line 443, in per_interact
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/display/screen.py", line 631, in update
  File "game/screens.rpy", line 282, in execute
  File "game/screens.rpy", line 282, in execute
  File "game/screens.rpy", line 287, in execute
  File "game/screens.rpy", line 293, in execute
  File "game/screens.rpy", line 294, in execute
  File "game/screens.rpy", line 299, in execute
  File "game/screens.rpy", line 302, in execute
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/sl2/sldisplayables.py", line 431, in sl2add
  File "C:\Users\Danny\Desktop\Random Stuff\RPProject\renpy-7.4.4-sdk/renpy/easy.py", line 139, in displayable
Exception: Not a displayable: <store.Action object at 0x7c8a5e9810>
I don't use the mobile version and can't debug its many, many unique problems, but are you trying to load an old save? If so, start a new game. Always start a new game on updates with this game.
 

dalzomo

Active Member
Aug 7, 2016
885
716
Can someone help with this error? The game crashes and brings this up whenever I try to do anything past groping with any character in the game.

Code:
Full traceback:
  File "renpy/bootstrap.py", line 326, in bootstrap
    renpy.main.main()
  File "renpy/main.py", line 617, in main
    run(restart)
  File "renpy/main.py", line 148, in run
    renpy.execution.run_context(True)
  File "renpy/execution.py", line 922, in run_context
    context.run()
  File "game/script.rpy", line 245, in script call
    call talk_person(picked_option) from _call_talk_person
  File "game/script.rpy", line 364, in script call
    call talk_person(the_person) from _call_talk_person_1 #If we're in the same place and time hasn't advanced keep talking to them until we stop talking on purpose.
  File "game/script.rpy", line 361, in script call
    $ _return.call_action()
  File "game/general_actions/interaction_actions/chat_actions.rpy", line 856, in script call
    call fuck_person(the_person, private = should_be_private, start_position = standing_grope, start_object = None, skip_intro = True) from _call_fuck_person_43 # Enter the sex system, starting from this point.
  File "game/sex_mechanics.rpy", line 202, in script call
    call check_position_willingness(the_person, position_choice, ignore_taboo = ignore_taboo, skip_condom = skip_condom) from _call_check_position_willingness
  File "game/sex_mechanics.rpy", line 457, in script call
    $ the_person.call_dialogue("sex_accept")
  File "game/personality_types/unique_personalities/lily_personality.rpy", line 393, in script
    the_person "Okay, let's do it. Just make sure Mom never finds out, okay?"
  File "game/script.rpy", line 245, in script call
    call talk_person(picked_option) from _call_talk_person
  File "game/script.rpy", line 364, in script call
    call talk_person(the_person) from _call_talk_person_1 #If we're in the same place and time hasn't advanced keep talking to them until we stop talking on purpose.
  File "game/script.rpy", line 361, in script call
    $ _return.call_action()
  File "game/general_actions/interaction_actions/chat_actions.rpy", line 856, in script call
    call fuck_person(the_person, private = should_be_private, start_position = standing_grope, start_object = None, skip_intro = True) from _call_fuck_person_43 # Enter the sex system, starting from this point.
  File "game/sex_mechanics.rpy", line 202, in script call
    call check_position_willingness(the_person, position_choice, ignore_taboo = ignore_taboo, skip_condom = skip_condom) from _call_check_position_willingness
  File "game/sex_mechanics.rpy", line 457, in script call
    $ the_person.call_dialogue("sex_accept")
  File "game/personality_types/unique_personalities/lily_personality.rpy", line 393, in script
    the_person "Okay, let's do it. Just make sure Mom never finds out, okay?"
  File "renpy/ast.py", line 724, in execute
    renpy.exports.say(who, what, *args, **kwargs)
  File "renpy/exports.py", line 1417, in say
    who(what, *args, **kwargs)
  File "game/major_game_classes/character_related/Person.rpy", line 271, in __call__
    self.char(what, *args, **kwargs)
  File "renpy/character.py", line 1219, in __call__
    self.do_display(who, what, cb_args=self.cb_args, dtt=dtt, **display_args)
  File "renpy/character.py", line 871, in do_display
    **display_args)
  File "renpy/character.py", line 621, in display_say
    rv = renpy.ui.interact(mouse='say', type=type, roll_forward=roll_forward)
  File "renpy/ui.py", line 298, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "renpy/display/core.py", line 3213, in interact
    repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs)
  File "renpy/display/core.py", line 3630, in interact_core
    root_widget.visit_all(lambda i : i.per_interact())
  File "renpy/display/core.py", line 567, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/core.py", line 567, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/core.py", line 567, in visit_all
    d.visit_all(callback, seen)
  File "renpy/display/screen.py", line 432, in visit_all
    callback(self)
  File "renpy/display/core.py", line 3630, in <lambda>
    root_widget.visit_all(lambda i : i.per_interact())
  File "renpy/display/screen.py", line 443, in per_interact
    self.update()
  File "renpy/display/screen.py", line 631, in update
    self.screen.function(**self.scope)
  File "game/game_screens/hud_screens/person_info_hud.rpy", line 1, in execute
    screen person_info_ui(the_person, display_layer = "solo"): #Used to display stats for a person while you're talking to them.
  File "game/game_screens/hud_screens/person_info_hud.rpy", line 1, in execute
    screen person_info_ui(the_person, display_layer = "solo"): #Used to display stats for a person while you're talking to them.
  File "game/game_screens/hud_screens/person_info_hud.rpy", line 5, in execute
    python:
  File "game/game_screens/hud_screens/person_info_hud.rpy", line 24, in <module>
    positive_effects += get_coloured_arrow(1)+get_red_heart(the_person.situational_sluttiness[situation][0])+" - " + the_person.situational_sluttiness[situation][1] + "\n"
  File "game/helper_functions/heart_formatting_functions.rpy", line 7, in get_red_heart
    the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.
  File "game/helper_functions/heart_formatting_functions.rpy", line 7, in get_red_heart
    the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.
  File "game/helper_functions/heart_formatting_functions.rpy", line 7, in get_red_heart
    the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.
  File "game/helper_functions/heart_formatting_functions.rpy", line 7, in get_red_heart
    the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.
  File "game/helper_functions/heart_formatting_functions.rpy", line 7, in get_red_heart
    the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.
  File "game/helper_functions/heart_formatting_functions.rpy", line 7, in get_red_heart
    the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.
  File "game/helper_functions/heart_formatting_functions.rpy", line 5, in get_red_heart
    if sluttiness >= 20:
RuntimeError: maximum recursion depth exceeded in cmp
Really "any" character or only Lily? How many have you attempted to grope? I say this because I can't duplicate this error no matter who I attempt to grope, including Lily
 

Shazam9834

New Member
Jul 8, 2018
4
0
Really "any" character or only Lily? How many have you attempted to grope? I say this because I can't duplicate this error no matter who I attempt to grope, including Lily
I've tried it on 4 randomly generated girls, Lily and Mom and it crashes at the exact same point every time.
 

kenkko

Newbie
May 11, 2017
96
104
Really "any" character or only Lily? How many have you attempted to grope? I say this because I can't duplicate this error no matter who I attempt to grope, including Lily
I've tried it on 4 randomly generated girls, Lily and Mom and it crashes at the exact same point every time.
This happens when you reach max recursion depth that python specifies. This can be fixed by either setting the recursion depth higher, or just modify the code. However if you remove it the hearts dont show up correctly.

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

This should stop your game from crashing.
 
  • Like
Reactions: dalzomo
3.40 star(s) 127 Votes