- Joined
- Oct 3, 2015
- Messages
- 26
- Reaction score
- 9
- First Language
- English
- Primarily Uses
- RMMZ
I'm trying to reference the agility parameter of a party member, rather than a specific actor in the database since the party will be constantly changing/chosen by the player throughout my game.
So basically what I'm trying to find is the agility parameter of party members 1, 2, 3, and 4.
I know that you can reference the 2nd actor's agility parameter like this:
And the 2nd enemy's agility parameter like this:
What is the script call to reference the 2nd party member?
So basically what I'm trying to find is the agility parameter of party members 1, 2, 3, and 4.
I know that you can reference the 2nd actor's agility parameter like this:
Code:
$gameActors.actor(2).agi
Code:
$dataEnemies[2].params[6]


