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.
Common With Parameter - CommonWithParameter.js
Plugin desc : Common Call Plugin with Arguments
License : MIT License
Author : Triacontane
Website : https://triacontane.blogspot.com
Desc page : https://github.com/triacontane/RPGMakerMV/tree/mz_master/CommonWithParameter.js
Download Page : https://raw.githubusercontent.com/munokura/triacontane-MZ-plugins/refs/heads/main/CommonWithParameter.js
File name : CommonWithParameter.js
Help of plugin :
@target MZ @url https://github.com/triacontane/RPGMakerMV/tree/mz_master/CommonWithParameter.js @plugindesc Common Call Plugin with Arguments @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-MZ-plugins ). Original plugin by Triacontane. Please check the latest official version at: https://triacontane.blogspot.com ----- CommonWithParameter.js You can call common events with arguments. Register the variable number to which arguments are passed in the plugin parameter, and call the common event by specifying the parameter from the dedicated plugin command. You can also define common arguments for all common events. In that case, specify 0 as the common event ID and define that data at the bottom of the list. You can also call common events based on their name. Calling common events by name uses a partial name match search. This plugin requires the base plugin ”PluginCommonBase.js.” ”PluginCommonBase.js” is located in the following folder under the RPG Maker MZ installation folder: dlc/BasicResources/plugins/official Terms of Use: You may modify and redistribute this plugin without permission from the author, and there are no restrictions on its use (commercial, 18+, etc.). This plugin is now yours. @param likeSearch @text Partial name match search @desc When specifying a common event to call by name, a partial match search will be performed. @type boolean @default true @param arguments @text Argument List @desc Registers argument information for a common event. @type struct<CommonArguments>[] @default [] @command CALL @text Common Event Call @desc Calls a common event with special parameters. @arg id @text Common Event ID @desc This is the common event ID of the event you want to call. If you want to call it by name, enter the name in the Text tab. @type common_event @default 0 @arg parameters @text Parameters @desc The value specified here will be stored in the variable specified in the argument information of the plugin parameter. @type multiline_string[] @default []