- Sep 24, 2017
- 32
- 10
How do I change character names in an Ren'py game already started?
[characterObject].name = 'New name'
mc.name = 'New name'
I need some more help I found “mc_name=“ but how do I change it with the enxtended viewer?To the answer of @Palanto Games and @Kasey I'll add that if the name is also displayed in top of the dialogs, you'll have to change the name directly inside the Character object.
For this, you'll have to use the default variables viewer, orYou must be registered to see the linksand search the variables which have "<Character: u'Actual name'>" as value. ThenYou must be registered to see the links, and type :
So, if the object is named "mc", you'll have to type :Code:[characterObject].name = 'New name'
Code:mc.name = 'New name'
As answered to you in the thread related to my tool, the extended variable viewer is not intended to change the values. And as said in the comment you quoted, if the name is also displayed in top of the dialog, changing the value of "mc_name" will not be enough ; either it will change nothing (the variable was used as buffer before being assigned to the Character object) or just change the way the MC will be called in the dialogs.I need some more help I found “mc_name=“ but how do I change it with the enxtended viewer?
Yeah sorry my fault so the game is Mythic Manor.As answered to you in the thread related to my tool, the extended variable viewer is not intended to change the values. And as said in the comment you quoted, if the name is also displayed in top of the dialog, changing the value of "mc_name" will not be enough ; either it will change nothing (the variable was used as buffer before being assigned to the Character object) or just change the way the MC will be called in the dialogs.
Like apparently changing the value of "mc_name" change nothing, you also need to [all what said in the comment above]. So, what's the name of the game ? It will be easier if someone who know more have a look at it and tell you where to search.
note: Sorry if my comment feel harsh. I know that everybody isn't necessarily at ease with code, it's just that it's 3AM here and I really need some holidays.
mc_name = "Name"