Tips & Tricks – Emergency Tactics (Final Fantasy 14) – RPG Maker MV

Yanfly Engine Plugins is a plugin library made for RPG Maker MV, a wonderful piece of software to help you make that role playing game of your dreams. You can find out more about RPG Maker MV here.

Today we have a skill from Final Fantasy 14 that we’ll be looking at: Emergency Tactics! It’s a skill that basically converts the target’s barriers to health but slightly tweaked for RPG Maker MV! Here’s how we’ll create it!

You can grab the copy/paste code here: 

Insert the following code into your barrier converting skill’s notebox:

<After Eval>
// Get the target's total expiring barrier points.
var barrier = target.barrierPoints() - target.barrierPoints(-1);
// Make the target lose those barrier points.
target.loseBarrier(barrier);
// Make the target gain HP equal to the barrier points lost.
target.gainHp(barrier);
// Start a damage popup.
target.startDamagePopup();
// Clear the target's results.
target.clearResult();
</After Eval>

Happy RPG Making!

Please wait while you are redirected...or Click Here if you do not want to wait.