[RMMV] LastAction Data
A downloadable RPG Maker MV Plugin
Places the data of the last action into "$gameSystem._lastAction"
Examples:
$gameSystem._lastAction.subject()
$gameSystem._lastNormalAction.subject()
$gameSystem._lastForceAction.subject()
Can also now recall actions used from the past via list(s) of actions
List of all actions in the Item Scene
$gameSystem.getActionList("Scene_Item")
List of all actions in the Skill Scene
$gameSystem.getActionList("Scene_Skill")
List of normal actions from only enemies in battle #1:
$gameSystem.getBattleActionList(1,'_normalActionList').filter(v => v._subjectEnemyIndex >= 0)
List of all actions from all battles:
$gameSystem.getBattleActionList()
Access an array of all the actionInfo objects
$gameSystem._actionInfo
Download
Click download now to get access to the following files:
Leave a comment
Log in with itch.io to leave a comment.