I am using this script to force an action in battle:
$gameParty.members()[0].forceAction(1,1);
BattleManager.forceAction($gameParty.members()[0]);
After forcing the action, how do I then end the turn and go to the enemy's turn?
I want to run this action instead of the player's choices.
I have tried BattleManager.processForcedAction(); this shows the action but doesn't do anything afterwards. I need to end the player's turn as if they have done their part, the forced action is all they do.
$gameParty.members()[0].forceAction(1,1);
BattleManager.forceAction($gameParty.members()[0]);
After forcing the action, how do I then end the turn and go to the enemy's turn?
I want to run this action instead of the player's choices.
I have tried BattleManager.processForcedAction(); this shows the action but doesn't do anything afterwards. I need to end the player's turn as if they have done their part, the forced action is all they do.
