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.
Equip Slot Invalidate - EquipSlotInvalidate.js
Plugin desc : Equipment slot disable plugin
License : MIT License
Author : Triacontane
Website : https://triacontane.blogspot.com/
Download Page : https://raw.githubusercontent.com/munokura/triacontane-MV-plugins/refs/heads/main/EquipSlotInvalidate.js
File name : EquipSlotInvalidate.js
Help of plugin :
@url https://triacontane.blogspot.com/ @plugindesc Equipment slot disable plugin @author Triacontane @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/triacontane-MV-plugins ). Original plugin by Triacontane. Please check the latest official version at: https://triacontane.blogspot.com ----- InvalidateEquipSlot.js Invalidates an actor's equipment slot. Equip equipped in a disabled slot will no longer be effective. The equipment itself will remain, but all stat changes and Traits will be disabled. Even if disabled, you can still change equipment from the menu screen, but the displayed and actual parameters will not change. Invalidation can be specified via the Note field or plugin command. Enter the following in the Note field for a state or feature: <EquipInvalid: 1> # Disable slot [1] Plugin Command Details Execute from the "Plugin Command" event command. (Parameters are separated by a space.) EQUIP_SLOT_INVALIDATE [Actor ID] [Slot Number] Invalidates the specified actor's equipment slot. Specifying [0] for the actor ID will disable the entire party. Specify slot numbers in the order 1, 2, 3, etc., starting from the top. Example: INVALIDATE_EQUIP_SLOT 1 1 # Disable slot [1] for actor [1] INVALIDATE_EQUIP_SLOT 0 2 # Disable slot [2] for all party members EQUIP_SLOT_VALIDATE [Actor ID] [Slot Number] Restores a disabled slot. Example: EQUIP_SLOT_VALIDATE 1 1 # Restore slot [1] for actor [1] EQUIP_SLOT_VALIDATE 0 2 # Restore slot [2] for all party members Terms of Use: You may modify and redistribute this plugin without permission from the author, and there are no restrictions on its use (commercial, R18, etc.). This plugin is now yours. @param commandPrefix @text Note field prefix @desc This is the prefix to specify when the name of the Note field or plugin command overlaps with that of another plugin. Normally, it is not necessary to specify this.