Tips & Tricks – Power Up Transformations – 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.

Give your party members the ability the ability to transform upon already existing transformations! Ascend to higher forms and crush your opponents!

Get the copy and paste version of the code here:

Place this inside of your Power Up skill. Replace the red text with settings to fit your game.

<Before Eval>
// Declare the State ID used for form 1.
var SSJ1 = 168;
// Declare the State ID used for form 2.
var SSJ2 = 169;
// Declare the State ID used for form 3.
var SSJ3 = 170;
// Check if the user is affected with form 1.
if (user.isStateAffected(SSJ1)) {
  // If the user has form 1, make the user ascend to form 2.
  user.addState(SSJ2);
// Check if the user is affected with form 2.
} else if (user.isStateAffected(SSJ2)) {
  // If the user has form 2, make the user ascend to form 3.
  user.addState(SSJ3);
// Check if the user is affected with form 3.
} else if (user.isStateAffected(SSJ3)) {
  // If the user has form 3, make the user reapply form 3.
  user.addState(SSJ3);
// This will run if the user has no forms..
} else {
  // If the user has no forms, make the user ascend to form 1.
  user.addState(SSJ1);
}
</Before Eval>

Happy transforming!

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