- Sep 24, 2017
- 295
- 1,149
So I used to have this small file to rename characters but lost it when I reinstalled the system
it was basically a mod that I downloaded and edited it for each game separately
it looked something like:
I tried to look for change name mods but I find them with a lot of files (hard renaming thru-out all the scripts), whilst in the one I had you only change one name and the mod do all the hard work for you with just one file with few lines
edit:
I was just writing this when I remembred the game I got the mod from, it was Gordon
I thought why dont I share the file here:
you just make a .rpy file of this and put whatever names you like and put it in the game folder
sorry if this was repetitive or if its in the wrong forum after I kinda answered myself
it was basically a mod that I downloaded and edited it for each game separately
it looked something like:
Python:
init python:
label blabla:#not sure if its a label or not
some_code("original_name", "madeup_name")
# probably 2 or 3 other lines of code and thats it
edit:
I was just writing this when I remembred the game I got the mod from, it was Gordon
I thought why dont I share the file here:
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
sorry if this was repetitive or if its in the wrong forum after I kinda answered myself
Last edited: