This page is out of date

You've reached a page on the Ren'Py wiki. Due to massive spam, the wiki hasn't been updated in over 5 years, and much of the information here is very out of date. We've kept it because some of it is of historic interest, but all the information relevant to modern versions of Ren'Py has been moved elsewhere.

Some places to look are:

Please do not create new links to this page.


renpy.seen_image

Returns True if the named image has been seen at least once on the user's system. An image has been seen if it's been displayed using the , , or function. (Note that there are cases where the user won't actually see the image, like a show immediately followed by a hide.)

Example

if renpy.seen_image("eileen happy"):
    scene black
    show eileen happy
    $ renpy.pause()
else:
    scene black
    centered "This image is locked."