- Aug 24, 2021
- 253
- 111
Need the full code? Because that's repeated about 600 timesHmmm... shoot. I genuinely have no idea.
Need the full code? Because that's repeated about 600 timesHmmm... shoot. I genuinely have no idea.
Just the last page or so. Look for some spot near the end where it transitions from a bunch of things like this --Need the full code? Because that's repeated about 600 times
File "game/<whatever file>.rpy", line 23, in script call
File "<whatever file path>\renpy\ast.py", line 930, in execute
Nope, that's the bit I needed! I'm still not sure exactly what caused the error, but looking through things now.Better do you want me to put the full code?
Woohoo! Found what was causing this error. I hadn't seen it on my game yet because Samantha's control hadn't gotten high enough, but managed to narrow things down to this line in Samantha's list of random events:You don't have permission to view the spoiler content. Log in or register now.
Event("OH_Therapy_NTS", 0.80, requirements=["Sam_OH_Control >= 60", "OH_hypnosis_session2 is False", "OH_samantha_story3 = True", "player_location != 'Samantha_Office_Menu'" ]),
"OH_samantha_story3 = True"
"OH_samantha_story3 is True"
The first one is a gym event that can happen if Cass comes in while you are working, and asks if you want her to spot you while you work out.I don't know why I haven't managed to get these sex scenes even if I play for a long time. How to get these sex scenes? (I see these in Game folder)
In gym, Cass and Samantha :
You don't have permission to view the spoiler content. Log in or register now.
¡Guau! Encontré lo que estaba causando este error. No lo había visto en mi juego todavía porque el control de Samantha no había aumentado lo suficiente, pero logré reducir las cosas a esta línea en la lista de eventos aleatorios de Samantha:
[CÓDIGO]Evento("OH_Therapy_NTS", 0.80, requisitos=["Sam_OH_Control >= 60", "OH_hypnosis_session2 es falso", "OH_samantha_story3 = Verdadero", "player_location!= 'Samantha_Office_Menu'" ]),[/CODE]
Específicamente este bit, en la lista de requisitos:que debería serCode:"OH_samantha_story3 = True"
Lo mejor que puedo decir es que ese signo = accidental (en lugar de "es") estaba provocando que intentara *establecer* ese valor cuando evaluaba si el jugador cumplía con los requisitos para el evento, lo que estaba causando el error.Code:"OH_samantha_story3 is True"
Adjunté una copia actualizada de Mientras tanto.py que debería solucionar el problema. (Y voy a agregar la misma solución a mi publicación en la página 46 aquí en un segundo).
EDITAR: Este ajuste ahora está incluido en la publicación principal con todos los ajustes que hice en la página. 46.
[/CITA]
¡Guau! Encontré lo que estaba causando este error. No lo había visto en mi juego todavía porque el control de Samantha no había aumentado lo suficiente, pero logré reducir las cosas a esta línea en la lista de eventos aleatorios de Samantha:
[CÓDIGO]Evento("OH_Therapy_NTS", 0.80, requisitos=["Sam_OH_Control >= 60", "OH_hypnosis_session2 es falso", "OH_samantha_story3 = Verdadero", "player_location!= 'Samantha_Office_Menu'" ]),[/CODE]
Específicamente este bit, en la lista de requisitos:que debería serCode:"OH_samantha_story3 = True"
Lo mejor que puedo decir es que ese signo = accidental (en lugar de "es") estaba provocando que intentara *establecer* ese valor cuando evaluaba si el jugador cumplía con los requisitos para el evento, lo que estaba causando el error.Code:"OH_samantha_story3 is True"
Adjunté una copia actualizada de Mientras tanto.py que debería solucionar el problema. (Y voy a agregar la misma solución a mi publicación en la página 46 aquí en un segundo).
EDITAR: Este ajuste ahora está incluido en la publicación principal con todos los ajustes que hice en la página. 46.
[/CITA]
¡Nada mal! tNot bad! I love you bro, it's placed in the game folder only right?
Yep! If you download the zip file from workupload, unzip it first. But then, yeah, the .py files just go in the "/game" folder.¡Nada mal! tNot bad! I love you bro, it's placed in the game folder only right?
Because there's nothing to happen...i click on that image when its down there and nothing happens.
If your gf is in your bedroom then whomever is in the ?room is in your room alsoView attachment 3345935
I am trying to figure out what that little face in the bottom left represents. I know thats Darcy and if she was on the map i would interact with her but..i click on that image when its down there and nothing happens.
That's one of the locked areas that haven't been added yet. If you see someone down there, they're just not accessible for the moment. (I think? I've been playing with the location of the other girls hidden, so I should maybe double check that isn't being used for anything else in this latest version.)View attachment 3345935
I am trying to figure out what that little face in the bottom left represents. I know thats Darcy and if she was on the map i would interact with her but..i click on that image when its down there and nothing happens.
Hmmm... I'm sorry, I really wish I knew what was happening with some of these recursion depth errors. I haven't run into any of them personally, though, and I haven't found any obvious code issues based on that error log?I keep getting a lot of errors, this specific one seems to be an infinite loop or something, I dont know much programming so cant say for sure. Also, I've tried with Brochie's fixes but I still keep getting many errors, specially with Samantha's Meanwhile events, i've even tried starting a new game, but nothing
If you check, line 583 of core.py repeats more than 980 times, so I suspect it's that, altho I dont know how to fix it myselfHmmm... I'm sorry, I really wish I knew what was happening with some of these recursion depth errors. I haven't run into any of them personally, though, and I haven't found any obvious code issues based on that error log?
Yeah, that's a very basic bit of code, though. It's not anything specific to this game, just part of the underlying RenPy game engine. Something in the game specific code (the "script call" entries further up the traceback) is causing an infinite loop, or maybe it's something where just way too many items are building up on the stack? I'm not sure exactly where the issue is, unless it's just some fundamental issue with the way random events are being handled.If you check, line 583 of core.py repeats more than 980 times, so I suspect it's that, altho I dont know how to fix it myself
It's because the first filename used in the image statement uses the same name as the show statement, causing recursion. I fixed it a while ago in another version by renaming hallcassohlifthj.webp to hallcassohlifthj1.webp and changing the section of Hallway.rpy like so, which also fixes the scene to use an image it wasn't.File "game/Hallway.rpy", line 363, in script
"As the door opens you are shocked to see [OH] and Cass"
Ah! Thanks. I had completely missed that. I might try the opposite tack (changing the image definition instead of the file name, just to make it easier to distribute the fix), but yeah, huge thanks.It's because the first filename used in the image statement uses the same name as the show statement, causing recursion. I fixed it a while ago in another version by renaming hallcassohlifthj.webp to hallcassohlifthj1.webp and changing the section of Hallway.rpy like so, which also fixes the scene to use an image it wasn't.
You don't have permission to view the spoiler content. Log in or register now.