How to change chraracter name via script? I mean, not script name, but full name? I found character[CHAR].name variable but don't know how to use it... or is there some other way?
AGS v2.62:
StrCopy(character[GEORGE].name, "New name");
AGS v2.70:
StrCopy(cGeorge.name, "New name");
AGS v2.71 (coming soon):
cGeorge.Name = "New name";
BFAQ (http://bfaq.xylot.com/#graphics30)
Not the exact same question, but it's still right there in black and white (and yellow, and that reddy-brown colour).