Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: InCreator on Mon 24/10/2005 06:16:04

Title: Changing character name
Post by: InCreator on Mon 24/10/2005 06:16:04
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?
Title: Re: Changing character name
Post by: strazer on Mon 24/10/2005 06:26:58
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";
Title: Re: Changing character name
Post by: Ashen on Mon 24/10/2005 11:46:17
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).