Howdy, partners!
How do I store an Actor's name into a variable?
I tried to use the "Control Variables" command with the Script option below, with no success...View attachment 158379
How do I store an Actor's name into a variable?
I tried to use the "Control Variables" command with the Script option below, with no success...View attachment 158379
Try using
$gameActors._data[9]._name;
/Edit:
Now that I looked at it, your method works too, but you forgot the brackets at the end:
$gameActors.actor(9).name();
