Search found 1 match

by filvalente
Thu May 25, 2023 7:37 pm
Forum: Ren'Py Questions and Announcements
Topic: Input player name [SOLVED]
Replies: 9
Views: 24863

Re: Input player name

How about trying this code for a user-input names?: First, define the character. Code: define e = Character("[name]") second, copy this code. Code: # The game starts here. label start:     $ name = renpy.input("What's your name?")     $ name = name.strip()     e"Hello! I'm ...