Wichu Member 93 Dec 3, 2006 #1 How would I do a script to name an actor with a variable? E.g. variable 1 is equal to "Name". How would I make it so actor 1's name changes to "Name"?
How would I do a script to name an actor with a variable? E.g. variable 1 is equal to "Name". How would I make it so actor 1's name changes to "Name"?
SephirothSpawn Sponsor 1,433 Dec 3, 2006 #2 Code: $game_variables[variable_id] = x $game_actors[actor_id].name = x $game_party.actors[index].name = x All of those work. Upvote 0 Downvote
Code: $game_variables[variable_id] = x $game_actors[actor_id].name = x $game_party.actors[index].name = x All of those work.