I'm having a problem with Yanfly's 'Stat Allocation' plugin, specifically in figuring out how to give a specific actor extra AP. (as in, in addition to what he has presently.
I have an event with two script calls in a choice:
var actor = $gameActors.actor(1);
actor.gainBonusAp(10, 0);
and
var actor = $gameActors.actor(1);
actor.setBonusAp(10, 0);
I had presumed that gainBonusAP would have been the one to add additional AP to a character, but both script calls are functionally identical. (hence having both in a choice box, for testing purposes and troubleshooting.)
I look forward to and appreciate any and all help with this, and I thank you for your time.
I have an event with two script calls in a choice:
var actor = $gameActors.actor(1);
actor.gainBonusAp(10, 0);
and
var actor = $gameActors.actor(1);
actor.setBonusAp(10, 0);
I had presumed that gainBonusAP would have been the one to add additional AP to a character, but both script calls are functionally identical. (hence having both in a choice box, for testing purposes and troubleshooting.)
I look forward to and appreciate any and all help with this, and I thank you for your time.
