First off a few details so everyone can understand what I want to make and why.
The game contains two possible Actors.
The game also contains two possible Classes.
Actor 1 is Class 1 and Actor 2 is Class 2.
This is RPG Maker basics, but I needed to state how things are set up, so you would understand easier what I am trying to do.
So I want to make npcs say something like:
Class: Name:
Officer Johnson
Captain Jack
Thus I thought that
\V[1] \N[1]
would be a fine way to do that.
But I should add the class name to variable 1 first. That's what I try to achieve really.
So....
I ran that script...
$gameVariables[1] = $game_actors[1].class.name;
and got a reference error
"game_actors is not defined"
Isn't game_actors scope global? I mean, why wouldn't I access it from eventing?
If not, please consider giving me a way to refer to the data through Script or Plugin command, Event command.
If possible please explain why and how your way works, so I can also hopefully
understand what is going on here.
Also:
Feel free to share alternative ways to show class name.
Thanks in advance guys.