$ name = renpy.input("What is your name?")
$ name = name.strip()
..........................................................................................................................................................................................................
$ player_name = renpy.input("What is your nickname?")
$ player_name = name.strip()
The code located below is what I used for the related characters.
define i = Character('[name]')
define mc = Character('[player_name]')
The problem is, the game seems to only recognize the first name entered, even when using the approprite character in dialogue. For example:
i "My name is [name]."
mc "but you can call me [player_name]."
Is it even possible to add multiple nicknames? If so, how could I do that? Thank you.