- Jun 10, 2018
- 6,327
- 22,773
Hey
I try to make a new starting point from the main menu (something like New Game+) and want to use mcs name from the previous play though.
Simplyfied:
and get this:
I can't figure it out and before I spend hours searching again, I'll ask directly this time^^
I try to make a new starting point from the main menu (something like New Game+) and want to use mcs name from the previous play though.
Simplyfied:
Python:
define pc = Character("[pc_name]")
define pcsure = Character("[pcsure]")
...
label start:
...
$ pc_name = renpy.input("Choose your first name.")
$ pcsure = renpy.input("Choose your last name.")
...
if pc_name == "":
$ pc_name = "John"
if pcsure == "":
$ pcsure = "Doe"
$ persistent.pc_name = pc_name
$ persistent.pcsure = pcsure
label start_again:
scene black with dissolve
m "Hello [pc] [pcsure], this is a test!"
You don't have permission to view the spoiler content.
Log in or register now.