Hey friends!
Long time lurker, finally wanted to contribute back a little something.
How to change the player's name (both while speaking and in dialogue):
Revisiting this great game and was curious if it was possible so wrote up a little script. Just put this in the game
folder, change "Bob" to whatever you want Sam's name in dialog to be.
Then open the console in game (Shift-O) and type s.name = "Bob"
, replacing Bob, obviously.
Enjoy!
(This only replaces instances where the text is exactly "Sam" in dialog. If you wanted to replace other strings (eg. lowercase "sam" or whatever"), just add more replace_in_dialogue
lines in the file. Careful as this may replace unintentional cases. You may want to add spaces to make sure it only replaces the word itself, eg " sam " instead of "sam" so it doesn't match "samatha" or something)
Cheers!