Name change would be nice... Not really a fan of playing porn games where the protagonist has the same name as my brother.
Update:
I attempted to access the scripts and replace all instances of "Liam" with my name but, I'm not having any luck with decrypting the rpyc files. Usually I have no problem doing this so it seems like the dev has some encryption going on that is different from the renpy norm.
Update 2:
Solution found!
Simply create a .rpy file in the game folder (name it whatever you want) and then copy this script into the file:
Code:
init 1090 python:
def replace_text(t1):
t1 = t1.replace("original_name", "madeup_name")
t1 = t1.replace("original_name2", "madeup_name2")
return t1
config.replace_text = replace_text
put the current characters name where "original_name" is and the name you want where "madeup_name" is. The process for replacing other character names should be fairly obvious based on the numbers in the second t1.replace entry.
Credit to
touti for this mod!