For people who're asking how to change the name of your character (or get money) this is the easiest way I've found. I copied some of this from a previous post:
QUIT GAME
Look for file name "00console.rpy" in ....\MythicManor-0.7.0-pc\renpy\common
Right click on file, select edit, recommend notepad++
Look for "config.console = False", change "False" to "True"
SAVE <<< important
START GAME
Bring up the console by use Shift+O
Type and enter:
mc_name = u'Bob'
//This names your character Bob. All the letters around the name are necessary but won't be visible in-game.
inventory.money = 9999
//This sets your money to 9999. If you want to add an amount instead of set an amount you can use this instead:
inventory.money += 450