Naming Characters

Started by theloudninja, May 15, 2010, 10:00:59 am

Previous topic - Next topic

theloudninja

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

Juan

\n[X] where x is the name of the character in the database.
Dropbox Who need luck when you can make your own.
3ds Friend code: ShowHide
 4468 1422  6617

SBR*

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).