Hello,
Is there a way to find an actor's name through scripting and save it into another name? Because the name can be changed through the Name Input Processing command.
Basically, let's say someone plays my game and calls actor 1 Joe. Not only do I want actor 1's name to change to Joe, say I want actor 2's name to change too, like to Joe's Friend. So is there a script call that can do this?
For example, something like:
Just wondering if I'm close to the real command :smile: If not, could anyone just tell me how you'd do this?
Is there a way to find an actor's name through scripting and save it into another name? Because the name can be changed through the Name Input Processing command.
Basically, let's say someone plays my game and calls actor 1 Joe. Not only do I want actor 1's name to change to Joe, say I want actor 2's name to change too, like to Joe's Friend. So is there a script call that can do this?
For example, something like:
Code:
$game_actor[2].name = "$game_actor[1].name_to.s" + "'s Friend"
Just wondering if I'm close to the real command :smile: If not, could anyone just tell me how you'd do this?