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.
View attachment 2047678
View attachment 2047628
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"
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.