I'm downloading the script but are you absolutely positive that the error showed up after you changed what I said? It could be totally something else. I'll see what I can do anyway.
Quoteno i just get another error... and if it gets the error on .name wont it happen on .class... .hp and the rest?
But if .name was called first, RMXP stops evaluating any code after that and shows an error.
EDIT:
Okay. You need to add these lines to the script you posted in page 1 (the Game_Player stuff, Seph's event text script). Just after
class Game_Player < Game_Character
add these lines:
# Player_Color: Constant used in refresh method
Player_Color = Color.new(128, 128, 255)
# Player_Name: Check the refresh method after the comment 'Determines Text'.
# Change it here accordingly if needed.
Player_Text = 'Name'
Basically, Player Text is not defined, or it does not have any valye when it's being used. You just need to define the constants.
If you get a syntax error in the same script (I got one), just comment out the very last "end".