How to make an age verification screen in Ren'py

Skollrage

Newbie
May 31, 2017
16
12
Hi! I'm developing a NTR Renpy game, and I want to make a splashscreen with an age verification like the one in Summertime Saga. Anyone can help me with a code example of how can I make this in screen language?
 

Synx

Member
Jul 30, 2018
488
468
Wouldn't it be much easier to just make the verification screen as a picture in a different program (photoshop, Gimp, paint might even work)?
 
  • Like
Reactions: wargnema
Apr 24, 2020
192
257
The code for perhaps the most basic age verification screen would be something like this:
Python:
label splashscreen:
    menu:
        "Are you over 18?"
        "Yes":
            pass
        "No":
            $ renpy.quit()
    return
Looking at the documentation ( ) it seems like you can just create any regular screen with image buttons and call it from the splashscreen label.
 
  • Like
Reactions: koks99 and osanaiko

khumak

Engaged Member
Oct 2, 2017
3,548
3,580
Never saw the point in these age verification screens unless they're legally required. You really think that 13 year old looking for a quick fap is going to click no, I'm not 18?