Szexen

New Member
Feb 9, 2018
2
0
115
Alright, it was because one was named
"day01_04night.rpy" and the other "day01_04_night.rpy"
so it didn't overwrite
My bad
fixed now

Hey, Idk I've never posted before, But I'm noticing an error, idk if it's my fault or something, but it's saying this?


I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/scene_base/images/image_day_0_intro.rpy", line 4, in script
layeredimage clarissa marker:
AttributeError: 'RawLayeredImage' object has no attribute 'properties'

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

Traceback (most recent call last):
File "game/scene_base/images/image_day_0_intro.rpy", line 4, in script
layeredimage clarissa marker:
File "renpy/ast.py", line 2231, in execute
self.call("execute")
~~~~~~~~~^^^^^^^^^^^
File "renpy/ast.py", line 2195, in call
return renpy.statements.call(method, parsed, *args, **kwargs)
~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "renpy/statements.py", line 379, in call
return method(parsed, *args, **kwargs)
~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
File "renpy/common/00layeredimage.rpy", line 811, in execute_layeredimage
rai.execute()
~~~~~~~~~~~^^
File "renpy/common/00layeredimage.rpy", line 798, in execute
properties = { k : eval(v) for k, v in self.properties.items() }
File "renpy/common/00layeredimage.rpy", line 798, in <lambda>
properties = { k : eval(v) for k, v in self.properties.items() }
^^^^^^^^^^^^^^^
AttributeError: 'RawLayeredImage' object has no attribute 'properties'

Windows-11-10.0.26100-SP0 AMD64
Ren'Py 8.4.1.25072401
LockDown Dom 0.31.0.1alpha
Tue Sep 9 18:18:41 2025
 

Down Bad Smut Games

Active Member
Game Developer
May 10, 2021
566
758
216
Hey, Idk I've never posted before, But I'm noticing an error, idk if it's my fault or something, but it's saying this?


I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/scene_base/images/image_day_0_intro.rpy", line 4, in script
layeredimage clarissa marker:
AttributeError: 'RawLayeredImage' object has no attribute 'properties'

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

Traceback (most recent call last):
File "game/scene_base/images/image_day_0_intro.rpy", line 4, in script
layeredimage clarissa marker:
File "renpy/ast.py", line 2231, in execute
self.call("execute")
~~~~~~~~~^^^^^^^^^^^
File "renpy/ast.py", line 2195, in call
return renpy.statements.call(method, parsed, *args, **kwargs)
~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "renpy/statements.py", line 379, in call
return method(parsed, *args, **kwargs)
~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
File "renpy/common/00layeredimage.rpy", line 811, in execute_layeredimage
rai.execute()
~~~~~~~~~~~^^
File "renpy/common/00layeredimage.rpy", line 798, in execute
properties = { k : eval(v) for k, v in self.properties.items() }
File "renpy/common/00layeredimage.rpy", line 798, in <lambda>
properties = { k : eval(v) for k, v in self.properties.items() }
^^^^^^^^^^^^^^^
AttributeError: 'RawLayeredImage' object has no attribute 'properties'

Windows-11-10.0.26100-SP0 AMD64
Ren'Py 8.4.1.25072401
LockDown Dom 0.31.0.1alpha
Tue Sep 9 18:18:41 2025
how did you get this error?
 

okthisnotme22

Member
Aug 11, 2023
114
84
105
Frogot to ask, is the paid version different in any way besides being the newest update? Or does it have its own content that the free version wont have.
 

Down Bad Smut Games

Active Member
Game Developer
May 10, 2021
566
758
216
Frogot to ask, is the paid version different in any way besides being the newest update? Or does it have its own content that the free version wont have.
So, both versions are mechanically the same now adays
The only difference is the paid version gets scenes early
Right now, The linda sext scene is in the free version
The Jessie BJ scene and the Addison rimming scene are paid only till next month
 
  • Like
Reactions: okthisnotme22

Dark Silence

Devoted Member
Jul 17, 2021
9,617
14,846
811
Well, I dl'd the patch from substar and it still errors.

Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


The label day_0502_sounds_so_sweet is defined twice, at File "game/scenes/day_5/day05_02day.rpy", line 607:
label day_0502_sounds_so_sweet: #To Edit
and File "game/scenes/day_5/day05_04night.rpy", line 1:
label day_0502_sounds_so_sweet: #To Edit


Ren'Py Version: Ren'Py 8.4.1.25072401
Tue Sep  9 16:24:25 2025
 

Down Bad Smut Games

Active Member
Game Developer
May 10, 2021
566
758
216
Well, I dl'd the patch from substar and it still errors.

Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


The label day_0502_sounds_so_sweet is defined twice, at File "game/scenes/day_5/day05_02day.rpy", line 607:
label day_0502_sounds_so_sweet: #To Edit
and File "game/scenes/day_5/day05_04night.rpy", line 1:
label day_0502_sounds_so_sweet: #To Edit


Ren'Py Version: Ren'Py 8.4.1.25072401
Tue Sep  9 16:24:25 2025
Darn, that's because that label shows up twice
I'mma go through all the files and make sure this mistake doesn't happen again, then reupload this
 
  • Like
Reactions: Dark Silence
Jul 7, 2022
47
88
104
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/scene_base/library.rpy", line 1, in script
    init python:
  File "game/scene_base/library.rpy", line 43, in <module>
    make_image_button(item)
    ~~~~~~~~~~~~~~~~~^^^^^^
  File "game/scene_base/library.rpy", line 27, in make_image_button
    for imag in all_library_images[nam]['images']:
                ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^ 
KeyError: 'images'

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

Traceback (most recent call last):
  File "game/scene_base/library.rpy", line 1, in script
    init python:
  File "renpy/ast.py", line 1187, in execute
    renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "renpy/python.py", line 1260, in py_exec_bytecode
    exec(bytecode, globals, locals)
    ~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "game/scene_base/library.rpy", line 43, in <module>
    make_image_button(item)
    ~~~~~~~~~~~~~~~~~^^^^^^
  File "game/scene_base/library.rpy", line 27, in make_image_button
    for imag in all_library_images[nam]['images']:
                ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^ 
KeyError: 'images'

Windows-11-10.0.26100-SP0 AMD64
Ren'Py 8.4.1.25072401
LockDown Dom 0.31.0.1alpha
Tue Sep  9 16:40:26 2025

Error at boot. No i-patch or anything. No AppData files for the game exist.
 

aribba32

Member
Dec 6, 2021
139
419
186
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/scene_base/library.rpy", line 1, in script
    init python:
  File "game/scene_base/library.rpy", line 43, in <module>
    make_image_button(item)
    ~~~~~~~~~~~~~~~~~^^^^^^
  File "game/scene_base/library.rpy", line 27, in make_image_button
    for imag in all_library_images[nam]['images']:
                ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
KeyError: 'images'

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

Traceback (most recent call last):
  File "game/scene_base/library.rpy", line 1, in script
    init python:
  File "renpy/ast.py", line 1187, in execute
    renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "renpy/python.py", line 1260, in py_exec_bytecode
    exec(bytecode, globals, locals)
    ~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "game/scene_base/library.rpy", line 43, in <module>
    make_image_button(item)
    ~~~~~~~~~~~~~~~~~^^^^^^
  File "game/scene_base/library.rpy", line 27, in make_image_button
    for imag in all_library_images[nam]['images']:
                ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
KeyError: 'images'

Windows-11-10.0.26100-SP0 AMD64
Ren'Py 8.4.1.25072401
LockDown Dom 0.31.0.1alpha
Tue Sep  9 16:40:26 2025

Error at boot. No i-patch or anything. No AppData files for the game exist.
I concur, this is the error I received as well
 
3.80 star(s) 54 Votes