Hi, is there a way to change MC name?
Not conveniently, the dev doesn't use a variable for the player's name in the dialog. Every time someone refers to him, it's spelt 'David' in the script, not '[D]'. And sometimes it's spelt differently, like with Yvette, who has an exaggerated French pronunciation of his name. So you'd either have to make a search and replace function and include it in the script, or manually find and replace every instance of David.
Edit: Well, I'll be. That wasn't hard at all. Download these two RPY files and put them in your game folder. Open them with a text editor.
In 'FV_name switch.rpy', go to these lines and replace NewPlayer and NewPlayerAccent with whatever you want the new player name to be.
Code:
replace_dict = {
"David" : "NewPlayer",
"Dayveed" : "NewPlayerAccent"
}
Do the same in 'script.rpy' for this line:
Code:
define D = Character("NewPlayer", color="c15a3c")