- Dec 16, 2018
- 5,786
- 6,805
I wanted to have my name in the game instead of the original name MC "Byron" so I decided to look a little bit how to solve it and I think I managed to solve it.
I note in advance that I did not test it by going through the whole game, but only by playing a little and so far where the original name MC appeared as text it was replaced with my chosen name but of course I am not an expert in coding so you can use it of course at your own risk.
So if someone wants to change the original name of MC "Byron" to his own, he can create a file in the notepad or notepad++ and add the following code to it where of course you replace the text "Your_ name" with the name you want in the game and after adding this code save this file as an rpy file and copy it and paste it to the "HighRiseClimb-0.92a-pc\game":
And if someone wants he can use the attached file in which he must of course first change the name himself
that is the text "Your_ name" on your chosen one.
P.S.
I created this mod to some extent thanks to the inspiration of my friend micmitja who created very useful for this game "clean gui background" which can be found here.
I note in advance that I did not test it by going through the whole game, but only by playing a little and so far where the original name MC appeared as text it was replaced with my chosen name but of course I am not an expert in coding so you can use it of course at your own risk.


So if someone wants to change the original name of MC "Byron" to his own, he can create a file in the notepad or notepad++ and add the following code to it where of course you replace the text "Your_ name" with the name you want in the game and after adding this code save this file as an rpy file and copy it and paste it to the "HighRiseClimb-0.92a-pc\game":
Code:
init python:
def myNameChange(text):
return renpy.re.sub( r'\b{}\b'.format( MODmcName ), MODwantedName, text )
config.say_menu_text_filter = myNameChange
default MODmcName = "Byron"
default MODwantedName = "Your_name"
that is the text "Your_ name" on your chosen one.
P.S.
I created this mod to some extent thanks to the inspiration of my friend micmitja who created very useful for this game "clean gui background" which can be found here.
clean gui background
have cut off grey text background from all chars so now you can normally use
Ren'Py Transparent Text Box Mod
original
View attachment 1809319
cut
View attachment 1809321
replace files in game/gui folder and your goodYou don't have permission to view the spoiler content. Log in or register now.
have also added beside original files if for what ever reason you prefer grey background
Workupload
also clean mc tag, cant to much about about when they call you but you can write your name on it
View attachment 1829964
View attachment 1829967
Workupload
enjoy
Last edited: