For those who really want it, here's quick and dirty way to change MC (Satoshi) name to your liking. I'm sorry if my describing sucks.
First, you need this piece of code to change MC name in dialogues (download it in attachments). You can pretty much use any text editor for this:
Code:
init 999 python:
def replace_text(t):
t = t.replace("Satoshi", "Your name here")
return t
config.replace_text = replace_text
Obviously "Your name here" gonna be replaced with your desired name.
Save and insert into game folder.
Lastly you need to manuylly change MC name tags.
Look for file "characters_and_others.rpy" open it with text editor and search for lines:
Code:
define s = Character("Satoshi", color="#ffffff",
then
Code:
define sn = Character("Satoshi", color="#ffffff",
and lastly
Code:
define sandk = Character("Satoshi and Kendo", color="#ffffff",
Change the Satoshi with name of your liking save and play.
(I know my describing might truly sucks but I hope you will find this usefull

)