Hi
I like when I can choose the mc name, and I see many people asked for this in this game, but is currently not implemented, so I write a little patch for that:
Create a file in the game/ folder (name the file what you want with .rpy extension), the code:
Code:
define MCName = "MC" #change MC by the name you want
define sa = (MCName)
init 10 python:
def nameChange( txt ):
if "Alex" in txt: #english
return txt.replace("Alex",MCName)
if "Саша" in txt: #russian
return txt.replace("Саша",MCName)
return txt
config.say_menu_text_filter = nameChange
And change MC by the name you want like indicated, and all "Alex" (english) or "Саша" (russian) will be replaced in all text by the name of your choice
See the result on my screenshot:
View attachment 327789