Tips & Tricks – Heighten Magic – 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.

Heighten Magic is a state that increases the MP cost of skills and increases the amount of damage dealt by magical skills, too. Here’s how to create this nice effect in RPG Maker MV!

Click here for the copy/paste version of the code: Place inside of your state’s notebox. Change the values in red to match the settings of your game.

<Custom Confirm Effect>
if (this.isMagical() && value !== 0) {
  value = Math.ceil(value * 1.50);
}
</Custom Confirm Effect>

Happy heightening!

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