Stefano2426

Member
Dec 14, 2017
263
85
Hello. I keep getting an error each time I go to bed/change the day. I tried starting the game anew and the error appears at a certain moment. So it is not a matter of using an old save. Anybody has a fix for this error please?
 

ThEReAlIcEmAn

Newbie
Nov 25, 2022
16
9
I've fixed the error that occurred when trying to display the friendship path. There are some errors in the store.rpy file on lines 1225, 1227, 1229, 1231, 1233, and 1235. You need to replace goodnight with goodnight_level. Lines 1225 through 1236 should now read like this:

if award==2 and megan_char.goodnight_level==0:
text "{b}{i}Friendly Path Night Peek:{/b}{/i} Peek at [megan_char.name] at night." size 30
elif award==2 and megan_char.goodnight_level==1 and item_hamper==0:
text "{b}{i}Friendly Path Night Peek:{/b}{/i} Obtain a hamper" size 30
elif award==2 and megan_char.goodnight_level==1 and item_hamper>0:
text "{b}{i}Friendly Path Night Peek:{/b}{/i} Peek at [megan_char.name] at night." size 30
elif award==2 and megan_char.goodnight_level<3:
text "{b}{i}Friendly Path Night Peek:{/b}{/i} Purchase a vibrator for [megan_char.name]" size 30
elif award==2 and megan_char.goodnight_level==3:
text "{b}{i}Friendly Path Night Peek:{/b}{/i} Peek at [megan_char.name] at night." size 30
if award==2 and megan_char.goodnight_level>=4:
text "{b}{i}Friendly Path Night Peek:{/b}{/i} Scene complete." size 30

Fixed file for anyone who needs it.
 

ThEReAlIcEmAn

Newbie
Nov 25, 2022
16
9
I've fixed the error that occurred when trying to display the friendship path. There are some errors in the store.rpy file on lines 1225, 1227, 1229, 1231, 1233, and 1235. You need to replace goodnight with goodnight_level. Lines 1225 through 1236 should now read like this:

if award==2 and megan_char.goodnight_level==0:
text "{b}{i}Friendly Path Night Peek:{/b}{/i} Peek at [megan_char.name] at night." size 30
elif award==2 and megan_char.goodnight_level==1 and item_hamper==0:
text "{b}{i}Friendly Path Night Peek:{/b}{/i} Obtain a hamper" size 30
elif award==2 and megan_char.goodnight_level==1 and item_hamper>0:
text "{b}{i}Friendly Path Night Peek:{/b}{/i} Peek at [megan_char.name] at night." size 30
elif award==2 and megan_char.goodnight_level<3:
text "{b}{i}Friendly Path Night Peek:{/b}{/i} Purchase a vibrator for [megan_char.name]" size 30
elif award==2 and megan_char.goodnight_level==3:
text "{b}{i}Friendly Path Night Peek:{/b}{/i} Peek at [megan_char.name] at night." size 30
if award==2 and megan_char.goodnight_level>=4:
text "{b}{i}Friendly Path Night Peek:{/b}{/i} Scene complete." size 30

Fixed file for anyone who needs it.
Other errors I have found and fix:

-error in script.rpy line 1244: call process_video_views(lindsay_video_1[0]) from _call_process_video_views
-change to: call process_video_views(lindsay_video_1) from _call_process_video_views_6

-error in lenore.rpy línea 232: if 1 not in lenore_char.scene_list.append(1):
-change to: if 1 not in lenore_char.scene_list:

-------------------------------------------------------------------------------------------------------------------------------------

- And there's a bug in version 2.4.1: When I try to talk to the nun, I get this error, which didn't happen in version 2.3.1:
```
I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
[Previous line repeated 28 more times]
File "game/library.rpy", line 251, in script call
call library_megan_streak from _call_library_megan_streak
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
File "game/nun.rpy", line 68, in script
call screen nun_hub()
File "renpy/common/000statements.rpy", line 671, in execute_call_screen
store._return = renpy.call_screen(name, *args, **kwargs)
File "game/nun.rpy", line 70, in execute
screen nun_hub():
File "game/nun.rpy", line 70, in execute
screen nun_hub():
File "game/nun.rpy", line 73, in execute
vbox align .01,.5:
File "game/nun.rpy", line 74, in execute
use girl_hud(nun_char)
File "game/script.rpy", line 6814, in execute

File "game/script.rpy", line 6814, in execute

File "game/script.rpy", line 6816, in execute
add who.prefix + "_icon" xalign .5
File "game/script.rpy", line 6817, in execute
frame background "#000000ff" padding 3,3:
File "game/script.rpy", line 6818, in execute
frame background "#e066a3ff":
File "game/script.rpy", line 6938, in execute

File "game/script.rpy", line 6939, in execute
if who==nun_char:
File "game/script.rpy", line 6939, in <module>
if who==nun_char:
AttributeError: 'GameCharacter' object has no attribute 'scene_list'

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

Full traceback:
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
[Previous line repeated 28 more times]
File "game/library.rpy", line 251, in script call
call library_megan_streak from _call_library_megan_streak
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
File "game/nun.rpy", line 68, in script
call screen nun_hub()
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\ast.py", line 1971, in execute
self.call("execute")
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\ast.py", line 1953, in call
return renpy.statements.call(method, parsed, *args, **kwargs)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\statements.py", line 349, in call
return method(parsed, *args, **kwargs)
File "renpy/common/000statements.rpy", line 671, in execute_call_screen
store._return = renpy.call_screen(name, *args, **kwargs)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\exports.py", line 3420, in call_screen
rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\ui.py", line 301, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\core.py", line 2166, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, pause_modal=pause_modal, **kwargs) # type: ignore
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\core.py", line 2688, in interact_core
root_widget.visit_all(lambda d : d.per_interact())
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\displayable.py", line 431, in visit_all
d.visit_all(callback, seen)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\displayable.py", line 431, in visit_all
d.visit_all(callback, seen)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\displayable.py", line 431, in visit_all
d.visit_all(callback, seen)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\screen.py", line 480, in visit_all
callback(self)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\core.py", line 2688, in <lambda>
root_widget.visit_all(lambda d : d.per_interact())
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\screen.py", line 491, in per_interact
self.update()
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\screen.py", line 697, in update
self.screen.function(**self.scope)
File "game/nun.rpy", line 70, in execute
screen nun_hub():
File "game/nun.rpy", line 70, in execute
screen nun_hub():
File "game/nun.rpy", line 73, in execute
vbox align .01,.5:
File "game/nun.rpy", line 74, in execute
use girl_hud(nun_char)
File "game/script.rpy", line 6814, in execute

File "game/script.rpy", line 6814, in execute

File "game/script.rpy", line 6816, in execute
add who.prefix + "_icon" xalign .5
File "game/script.rpy", line 6817, in execute
frame background "#000000ff" padding 3,3:
File "game/script.rpy", line 6818, in execute
frame background "#e066a3ff":
File "game/script.rpy", line 6938, in execute

File "game/script.rpy", line 6939, in execute
if who==nun_char:
File "game/script.rpy", line 6939, in <module>
if who==nun_char:
AttributeError: 'GameCharacter' object has no attribute 'scene_list'

Windows-10-10.0.19041 AMD64
Ren'Py 8.2.3.24061702
Live in Corruption 2.4.1
Tue Aug 12 01:07:13 2025
```
 

OvidiusLian

Member
Jan 28, 2018
127
145
Other errors I have found and fix:

-error in script.rpy line 1244: call process_video_views(lindsay_video_1[0]) from _call_process_video_views
-change to: call process_video_views(lindsay_video_1) from _call_process_video_views_6

-error in lenore.rpy línea 232: if 1 not in lenore_char.scene_list.append(1):
-change to: if 1 not in lenore_char.scene_list:

-------------------------------------------------------------------------------------------------------------------------------------

- And there's a bug in version 2.4.1: When I try to talk to the nun, I get this error, which didn't happen in version 2.3.1:
```
I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
[Previous line repeated 28 more times]
File "game/library.rpy", line 251, in script call
call library_megan_streak from _call_library_megan_streak
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
File "game/nun.rpy", line 68, in script
call screen nun_hub()
File "renpy/common/000statements.rpy", line 671, in execute_call_screen
store._return = renpy.call_screen(name, *args, **kwargs)
File "game/nun.rpy", line 70, in execute
screen nun_hub():
File "game/nun.rpy", line 70, in execute
screen nun_hub():
File "game/nun.rpy", line 73, in execute
vbox align .01,.5:
File "game/nun.rpy", line 74, in execute
use girl_hud(nun_char)
File "game/script.rpy", line 6814, in execute

File "game/script.rpy", line 6814, in execute

File "game/script.rpy", line 6816, in execute
add who.prefix + "_icon" xalign .5
File "game/script.rpy", line 6817, in execute
frame background "#000000ff" padding 3,3:
File "game/script.rpy", line 6818, in execute
frame background "#e066a3ff":
File "game/script.rpy", line 6938, in execute

File "game/script.rpy", line 6939, in execute
if who==nun_char:
File "game/script.rpy", line 6939, in <module>
if who==nun_char:
AttributeError: 'GameCharacter' object has no attribute 'scene_list'

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

Full traceback:
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
[Previous line repeated 28 more times]
File "game/library.rpy", line 251, in script call
call library_megan_streak from _call_library_megan_streak
File "game/tv.rpy", line 98, in script call
call megan_tv_3 from _call_megan_tv_3
File "game/nun.rpy", line 68, in script
call screen nun_hub()
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\ast.py", line 1971, in execute
self.call("execute")
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\ast.py", line 1953, in call
return renpy.statements.call(method, parsed, *args, **kwargs)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\statements.py", line 349, in call
return method(parsed, *args, **kwargs)
File "renpy/common/000statements.rpy", line 671, in execute_call_screen
store._return = renpy.call_screen(name, *args, **kwargs)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\exports.py", line 3420, in call_screen
rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\ui.py", line 301, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\core.py", line 2166, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, pause_modal=pause_modal, **kwargs) # type: ignore
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\core.py", line 2688, in interact_core
root_widget.visit_all(lambda d : d.per_interact())
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\displayable.py", line 431, in visit_all
d.visit_all(callback, seen)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\displayable.py", line 431, in visit_all
d.visit_all(callback, seen)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\displayable.py", line 431, in visit_all
d.visit_all(callback, seen)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\screen.py", line 480, in visit_all
callback(self)
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\core.py", line 2688, in <lambda>
root_widget.visit_all(lambda d : d.per_interact())
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\screen.py", line 491, in per_interact
self.update()
File "N:\Live in Corruption\corruptsin-2.4.1-pc\renpy\display\screen.py", line 697, in update
self.screen.function(**self.scope)
File "game/nun.rpy", line 70, in execute
screen nun_hub():
File "game/nun.rpy", line 70, in execute
screen nun_hub():
File "game/nun.rpy", line 73, in execute
vbox align .01,.5:
File "game/nun.rpy", line 74, in execute
use girl_hud(nun_char)
File "game/script.rpy", line 6814, in execute

File "game/script.rpy", line 6814, in execute

File "game/script.rpy", line 6816, in execute
add who.prefix + "_icon" xalign .5
File "game/script.rpy", line 6817, in execute
frame background "#000000ff" padding 3,3:
File "game/script.rpy", line 6818, in execute
frame background "#e066a3ff":
File "game/script.rpy", line 6938, in execute

File "game/script.rpy", line 6939, in execute
if who==nun_char:
File "game/script.rpy", line 6939, in <module>
if who==nun_char:
AttributeError: 'GameCharacter' object has no attribute 'scene_list'

Windows-10-10.0.19041 AMD64
Ren'Py 8.2.3.24061702
Live in Corruption 2.4.1
Tue Aug 12 01:07:13 2025
```
There is more bugs, rollback before the error and type `nun_char.scene_list = []` in renpy console.
 
  • Like
Reactions: ThEReAlIcEmAn

Gt8588

Newbie
Feb 26, 2025
40
72
I asked this question a while back: Is the pregnant babysitter route specific (corruption route vs. friendship/love route)? or is she bugged? In the love route, I can't interact with her, even when she is present in the park.

Or is there a specific event that is required before I can interact with her? Or is it simply a bug?
 
3.90 star(s) 16 Votes