Chaos Project

RPG Maker => General Discussion => Troubleshooting / Help => Topic started by: theloudninja on May 15, 2010, 10:00:59 am

Title: Naming Characters
Post by: theloudninja on May 15, 2010, 10:00:59 am
I have the whole name input processing thing, but how do I make the NPC's refer to what the character inputted as their name?

RPG Maker XP
Title: Re: Naming Characters
Post by: Juan on May 15, 2010, 10:11:58 am
\n[X] where x is the name of the character in the database.
Title: Re: Naming Characters
Post by: SBR* on May 15, 2010, 10:55:29 am
Quote from: Juan on May 15, 2010, 10:11:58 am
\n[X] where x is the name of the character in the database.


You must mean ID...

OT: You can also store the FIRST guy in the party's name in a variable using:

$game_variables[id] = $game_party.actors[0].name

(^I think...) where id is the id of the variable and then call it in a message window by using \v[id] where id is the id of the variable (the same id used above).