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.
Version Up Common - VersionUpCommon.js
Plugin desc : ver1.031/When the setting version and recording version are different, the start of the common event is scheduled.
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/Others/VersionUpCommon.js
File name : VersionUpCommon.js
Help of plugin :
@target MZ MV @plugindesc ver1.031/When the setting version and recording version are different, the start of the common event is scheduled. @author Yana @url https://raw.githubusercontent.com/munokura/Yana-MV-plugins/master/Others/VersionUpCommon.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 Set ------------------------------------------------------ Specify the common event ID to execute when the versions are different in the plugin parameters. The current game version can be obtained from $gameSystem._gameVersion, and the pre-update game version can be obtained from $gameSystem._preVersion. To use the current version as a condition for Event's Contents branching, use the following condition in the script: $gameSystem._gameVersion === 'game version' To use the pre-update version as a condition for Event's Contents branching, use the following condition in the script: $gameSystem._preVersion === 'game version' For an example of how to create a common event, see the attached image. When created like this: Upgrade from 1.0.0 to 1.0.3: All updates from 1.01 to 1.03 are passed. Upgrade from 1.0.2 to 1.0.3: Only the 1.03 update is passed. This behavior allows you to pass only the necessary updates. ------------------------------------------------------ There are no plugin commands. ------------------------------------------------------ ------------------------------------------------------ Terms of Use ------------------------------------------------------ This plugin is released under the MIT License. http://opensource.org/licenses/mit-license.php -------------------------------------------------------- Update History: ver1.031:180410 Plugin parameter specifications updated to 1.5.0. ver1.03: Fixed a bug where some plugin parameter settings were not Reflectioned. Added a plugin parameter to change font size. ver1.02: Fixed a bug where some plugin parameter settings were not Reflectioned. ver1.01: Added help. Partially revised plugin parameter descriptions. ver1.00: Released @param Game Version @text Game Version @desc The game version. Compare this text with the value stored in $gameSystem. @default 1.00 @param Reserve Common ID @text Execution common event ID @desc The ID of the common event to execute if the versions are different. @default 2 @type common_event @param Show Game Version @text Show version as title @desc This setting determines whether the game version is displayed in the title. Set this to true or false. @default true @type boolean @param Version Text @text Title display version previous text @desc Text to add before the version in the title. @default version. @param Position X @text position x coordinate @desc The X coordinate of the title version's position. @default 572 @param Position Y @text Position Y coordinate @desc The Y coordinate of the title version position. @default 594 @param Text Alignment @text Justification @desc The text alignment. Specify left, center, or right. @default right @type select @option Left-justified @value left @option Centered @value center @option Right-justified @value right @param Text Font Size @text Font size @desc The font size of the text. @default 28 @type number