Tips & Tricks – Convert (Final Fantasy 11) – 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.

Final Fantasy 11 had a rather interesting ability called convert. It would convert the user’s remaining HP into MP and the remaining MP into HP! In short, HP and MP get flipped around and swapped! Today, we’ll take an extra spin on it and make it usable on any ally! Here’s how we can make this effect in RPG Maker MV!

You can grab the copy/paste code here: 


Insert the following Lunatic Mode code into your convert skill’s notebox:

<Before Eval>
// Get the target's current HP value
var hp = target.hp;
// Get the target's current MP value
var mp = target.mp;
// Set the target's current HP to the stored MP value
target.setHp(mp);
// Set the target's current MP to the stored HP value
target.setMp(hp);
</Before Eval>

Enjoy!

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