Tips & Tricks – Equip Battle Skills Slots Augments – 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.

For those of you using Equip Battle Skills and Attachable Augments, have you ever wanted to make some augments that increase the number of battle skills a battler can bring to a fight? Well, now you can!

You can grab the copy/paste code here: 

Place this code inside of your augment item’s notebox. Change the values in red to fit your game’s settings and the values in blue to adjust the augment type.

<Augment Attach Eval: Orb>
// When this item is attached to an orb slot.
// Increase the item's equip skill slots by +2
item.equipSkillSlots += 2;
</Augment Attach Eval: Orb>

<Augment Detach Eval: Orb>
// When this item is detahced from an orb slot.
// Decrease the item's equip skill slots by -2.
item.equipSkillSlots -= 2;
</Augment Detach Eval: Orb>

Happy augmenting!

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