Search found 2 matches

by 10+5
Thu Oct 22, 2020 5:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Using multiple names for one character?
Replies: 7
Views: 673

Re: Using multiple names for one character?

As anonymouse says, you do not really need a function to adjust the name. I would though suggest using a dynamic character to adjust the name... default pc_name = _("Bob") ## the _() sets it for translation define pc = Character("[pc_name]") # use [] interpolation to make this c...
by 10+5
Fri Oct 16, 2020 7:48 pm
Forum: Ren'Py Questions and Announcements
Topic: Using multiple names for one character?
Replies: 7
Views: 673

Using multiple names for one character?

Hi all, I'm working on a visual novel where a character uses multiple names/aliases at various points in the story, and was wondering what the easiest way to switch between these names might be. A friend familiar with Python came up with this piece of code for me, but it doesn't seem to work: init p...