Tips & Tricks – Entrust (Final Fantasy Record Keeper) – 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.

Entrust is a skill from Final Fantasy Record Keeper which lets the user transfer his or her soul gauge to the target ally. In RPG Maker MV, this would be the equivalent of a unit transferring their current TP to a target. Here’s how we can make this effect in RPG Maker MV! 


Insert the following Lunatic Mode into your Entrust skill’s notebox.

// Make the user require at least 1 TP to transfer
<Custom Requirement>
value = user.tp >= 1;
</Custom Requirement>

// Make the user unable to select self
<Select Conditions>
Not User
</Select Conditions>

<After Eval>
// Set the target's TP to the user's current TP
target.setTp(user.tp);
// Set the user's TP to 0
user.setTp(0);
</After Eval>

Enjoy!

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