Welcome to PGMZ! 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.
LL Equip Quick Change - LL_EquipQuickChange.js
Plugin desc : Adds a "Quick Equip" option for items.
License :
・Copyright: Retained
・Commercial Use: Allowed
・Modification: Allowed
・Redistribution: Prohibited (This does not apply to works made using the material.)
・Details: See Download Page / In-plugin documentation
Author : Lulu's Church
Website : https://nine-yusha.com/
Desc page : https://nine-yusha.com/plugin-quickequip/
File name : LL_EquipQuickChange.js
Help of plugin :
* @target MZ * @plugindesc Adds a "Quick Equip" option for items. * @author Lulu's Church * @url https://nine-yusha.com/plugin-quickequip/ * * @help LL_EquipQuickChange.js * * Shows a window to select which actor to equip a specific item. * Implements a "Quick Equip Now?" option when obtaining items. * Use plugin commands to trigger this behavior. * * Plugin Commands: * Change Weapon: Choose a weapon and show the equip selection window. * Change Armor: Choose an armor and show the equip selection window. * * Commands are ignored if the item is not in inventory. * * Terms of use: * ・No copyright notice required. * ・No report needed for use. * ・Free for commercial and non-commercial. * ・No restriction for adult works. * ・You may modify freely for your game. * ・Redistribution as plugin material (incl. modified) prohibited. * * Author: Lulu's Church * Date: 2022/8/18 * * @param shopSettings * @text Shop Integration * @desc * This setting is not used. * * @param shopEnabled * @text Auto Show on Purchase * @desc Shows equip window after buying equipment in shops. * @default true * @type boolean * @parent shopSettings * * @param shopDisabledswitchId * @text Disable Switch ID * @desc If this switch is ON, the equip window will not appear on purchase. * @type switch * @parent shopSettings * * @param shopMultipleEquip * @text Repeat for Multi-Buy * @desc When buying multiple items, repeat equip selection for each one. * @default false * @type boolean * @parent shopSettings * * @param iniInfoText * @text Prompt Message * @desc Text shown when asking to equip. * @default Equip now? * @type string * * @param iniEquipNgText * @text Cannot Equip Message * @desc Message shown if the item cannot be equipped. * @default Cannot equip. * @type string * * @param iniCancelText * @text Cancel Command Name * @desc Label for the cancel command. * @default Do not equip * @type string * * @command changeWeapon * @text Equip Weapon * @desc Choose a weapon and show the equip selection window. * Ignored if weapon is not owned. * * @arg weaponId * @text Weapon ID * @desc Choose the weapon to equip. * @type weapon * * @arg infoText * @text Prompt Message * @desc Message text shown when asking to equip. * @default Equip now? * @type string * * @arg gainCount * @text Quantity Gained * @desc Repeat the equip prompt this many times. Max = party size. * @default 1 * @min 1 * @max 99 * @type number * * @command changeArmor * @text Equip Armor * @desc Choose an armor and show the equip selection window. * Ignored if armor is not owned. * * @arg armorId * @text Armor ID * @desc Choose the armor to equip. * @type armor * * @arg infoText * @text Prompt Message * @desc Message text shown when asking to equip. * @default Equip now? * @type string * * @arg gainCount * @text Quantity Gained * @desc Repeat the equip prompt this many times. Max = party size. * @default 1 * @min 1 * @max 99 * @type number