Welcome to PGMV! My goal is to make it easy for everyone to find and share great plugins for creating amazing games. As a plugin developer myself, I'm excited to grow this community with all of you.
Equipped Limit - EquippedLimit.js
Plugin desc : ver1.01/Added a function to limit equipment using calculation formulas.
License : MIT License
Author : Yana
Website : https://w.atwiki.jp/pokotan/pages/3.html
Desc page : https://github.com/munokura/Yana-MV-plugins
Download Page : https://raw.githubusercontent.com/munokura/Yana-MV-plugins/refs/heads/master/Item_Skill/EquippedLimit.js
File name : EquippedLimit.js
Help of plugin :
@plugindesc ver1.01/Added a function to limit equipment using calculation formulas. @author Yana @url https://raw.githubusercontent.com/munokura/Yana-MV-plugins/master/Item_Skill/EquippedLimit.js @license MIT License @help English Help Translator: munokura This is an unofficial English translation of the plugin help, created to support global RPG Maker users. Feedback is welcome to improve translation quality (see: https://github.com/munokura/Yana-MV-plugins ). Original plugin by Yana. ----- ------------------------------------------------------ How to Use ------------------------------------------------------ If you write either <EquippedLimit:xxx> in a weapon or armor memo, the equipment will be grayed out and cannot be equipped unless xxx is evaluated with eval and the result is true. You can write a calculation formula for xxx, and then use a → actor v → variable s → switch respectively. You can set multiple conditions by writing them on multiple lines. Example 1: The current level must be 30 or higher to equip the equipment. <EquippedLimit:a.level >= 30> Example 2: The current actor's base attack power must be 30 or higher, and their base defense power must be 30 or higher to equip the equipment. <EquippedLimit:a.paramBase(2) >= 30> <EquippedLimit:a.paramBase(3) >= 30> ------------------------------------------------------ Terms of Use ------------------------------------------------------ This plugin is released under the MIT License. http://opensource.org/licenses/mit-license.php ------------------------------------------------------ Update History: ver1.01:170105 Changed so that items that cannot be equipped due to restrictions when using the Optimize are recognized as having the worst performance. ver1.00: Released