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
\n[X] where x is the name of the character in the database.
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).