Search found 2 matches

by Houseofmine
Mon Apr 29, 2024 6:36 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Need help for name choice
Replies: 2
Views: 171

Re: Need help for name choice

philat wrote: Mon Apr 29, 2024 12:39 am Use either of the following if checks:

Code: Select all

if Name == "A" or Name == "B" or ... :

if Name in ["A", "B" ... ]:
It works ! Thank you !
by Houseofmine
Sun Apr 28, 2024 1:39 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Need help for name choice
Replies: 2
Views: 171

[SOLVED]Need help for name choice

Can someone help me with this code ? For some reason no matter what I write as a name, if it's not "TheFrenchyDude", it just says "very funny" and sends me back to the name choice (even if it's not one of the slurs in the list) and there is no way to continue : label choice_name:...