- Joined
- Nov 10, 2021
- Messages
- 9
- Reaction score
- 3
- First Language
- English
- Primarily Uses
- RMMV
Hello, everyone. What I wish to do is make a system for seeing what attack an enemy is going to use on their turn. I know I can just use something like
and then have a window under the enemy that writes out
The problem is this; I don't know how to add multiple windows at once for each enemy, have the windows update accordingly and have them disappear upon said enemy's defeat and I'd like help in figuring out how to do this. Thank you in advance!
JavaScript:
var x = $gameTroop._enemies[0]._actions[0]._item._itemId;
JavaScript:
$dataSkills[x].name;
The problem is this; I don't know how to add multiple windows at once for each enemy, have the windows update accordingly and have them disappear upon said enemy's defeat and I'd like help in figuring out how to do this. Thank you in advance!