Hi there,
Found some code that changes all occurances of Luke to whatever name you type in without having to update all the files.
init python:
#start
hardcoded = {}
def hardcoded_name_reset(text):
def text_repl(t):
if renpy.re.match("Luke", t.group(0)): return "[mcName]"
return hardcoded[text] if text in hardcoded else renpy.re.sub( r'(?

?i)Luke)', text_repl, text )
config.say_menu_text_filter = hardcoded_name_reset
#end
config.overlay_screens.append("name_button")
Is there a way to change the colour of mcName on the options line just to highlight it?
Thanks for the mod.
Regards,
David Findlay