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.
FTKR Original Scene Window - FTKR_OriginalSceneWindow.js
Plugin desc : v1.7.1 Create your own scenes and windows
License : MIT License
Author : Futokoro
Desc page : https://github.com/munokura/futokoro-MV-plugins
Download Page : https://raw.githubusercontent.com/munokura/futokoro-MV-plugins/refs/heads/master/FTKR_OriginalSceneWindow.js
File name : FTKR_OriginalSceneWindow.js
Help of plugin :
@plugindesc v1.7.1 Create your own scenes and windows @author Futokoro @url https://github.com/munokura/futokoro-MV-plugins @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/futokoro-MV-plugins ). Original plugin by Futokoro. Please check the URL below for the latest version of the plugin. URL https://github.com/futokoro/RPGMaker ----- ----------------------------------------------------------------------------- Overview ----------------------------------------------------------------------------- Create original scenes and windows. 1. Easily create original scenes. 2. Create windows for original scenes, map scenes, and battle scenes. You can create three types of windows: 1. Command Window - Displays commands for scene changes and common events. 2. Common Window - Displays various text, numbers, images, etc. (*1) 3. Select Window - Displays various text, numbers, images, etc. as a list. (*1) (*1) If you want to display something other than text in the common window, FTKR_CustomSimpleActorStatus.js is required. For instructions on how to use the plugin, see the online manual page below. https://github.com/futokoro/RPGMaker/blob/master/FTKR_OriginalSceneWindow.ja.md ----------------------------------------------------------------------------- Setup Instructions ---------------------------------------------------------------------------- 1. Add this plugin to the "Plugin Manager." --------------------------------------------------------------------------- License for This Plugin --------------------------------------------------------------------------- This plugin is released under the MIT License. Copyright (c) 2017,2018 Futokoro http://opensource.org/licenses/mit-license.php Plugin Publisher https://github.com/futokoro/RPGMaker/blob/master/README.md ----------------------------------------------------------------------------- Change History ----------------------------------------------------------------------------- v1.7.1 - 2020/03/21: Bug Fixes 1. Fixed a bug that prevented the active window command from working properly. 2. Added the ability to set the window height and width independently. 3. Added the ability to set the command window height regardless of the number of commands. v1.7.0 - 2019/12/16: Traits Added 1. Added the ability to set the display content for common windows using the statusList method of FTKR_CustomSimpleActorStatus.js. v1.6.0 - 2018/10/08: Traits Added, Help Reduced 1. Added a plugin command to set the window skin. v1.5.7 - 2018/09/17: Bug Fixes 1. Fixed a bug where changes to the command content of a created window would not be Reflectioned after "Update." v1.5.6 - 2018/07/31: Bug Fixes 1. Fixed a bug where the actor's game data would not be Reflectioned correctly when an actor was added to the list in the Select Window. 2. Fixed an issue where selection information in the Command or Select window could not be correctly obtained. v1.5.5 - 2018/06/18: Bug fixes 1. Fixed an issue where the Enable Escape Code plugin parameter setting was not Reflectioned. v1.5.4 - 2018/05/24: Functionality fixes 1. Fixed the ability to use the text display command even when combined with FTKR_CustomSimpleActorStatus.js. v1.5.3 - 2018/05/20: Help fixes 1. Added a script to obtain data for selected items in the Select window list. v1.5.2 - 2018/03/12: Bug fixes 1. Fixed an issue where the display transparency of actor images changed. v1.5.1 - 2018/02/15: Traits Added 1. Added a command to return the cursor to its initial position in the Command Window and Select Window. v1.5.0 - 2018/02/14: Traits Added, Specification Changes, Help Corrections 1. Added the ability to turn window display on/off with an in-game switch. 2. Removed the ability to set the number of windows generated in the plugin parameters. 3. Changed so that the generation command must be executed to create windows, even in battle scenes. v1.4.0 - 2018/01/16: Traits Added 1. Added a command to set the behavior when the command window is canceled. 2. Added a plugin command to exit the original scene. v1.3.0 - July 9, 2017: Traits Added v1.2.1 - June 23, 2017: Bug Fixes 1. Fixed a bug where control characters were not properly Reflectioned in the status settings when using display content settings. 2. Fixed an issue where the active status would not be turned off when the window display was turned off. 3. Added support for @type as a plugin parameter. v1.2.0 - June 20, 2017: Traits Added 1. Added display content for the Select Window list settings. 2. Added a reference command that allows common windows to receive actors and data from the Select Window. v1.1.1 - June 19, 2017: Help Fixes v1.1.0 - June 19, 2017: Traits Added, Specification Changes 1. Removed the default setting for the "Close" command in original scenes. 2. Changed so that turning off the command window also turns off the active window. 3. Added the ability to close a scene and activate another window to the command addition method. 4. Modified so that common events can be called from an original scene. 5. Added the ability to create a select window. v1.0.0 - June 17, 2017: First version created ----------------------------------------------------------------------------- @param --ウィンドウの共通設定-- @text -- Common window settings -- @param Font Size @desc Font size @default 28 @type number @param Window Padding @desc Margins around the window @default 18 @type number @param Window Line Height @desc The height of one line in the window @default 36 @type number @param Window Opacity @desc Background transparency in windows @default 192 @type number @param Window Frame @desc Whether to display the window frame: 1 - Display, 0 - Hide @default 1 @type select @option Show @value 1 @option Do not display @value 0 @param --オリジナルシーンの設定-- @text --Original scene setting-- @param Background Image Name @desc Specify the image file name to use as the background. The image file must be saved in /img/system. @type file @require 1 @dir img/system/ @param --コマンドウィンドウの設定-- @text --Command window settings-- @param Enable Escape Code @desc Allows control characters to be used in commands. 1 - Enable, 0 - Disable @default 0 @type select @option valid @value 1 @option invalid @value 0 @param Command Position X @desc Sets the X coordinate where the command window is displayed. @default 0 @param Command Position Y @desc Sets the Y coordinate where the command window is displayed. @default 0 @param Command Width @desc Sets the width of the command window. @default 240 @type number @param Command Max Cols @desc Sets the maximum number of columns in the command window. @default 1 @type number @param Command Align @desc Set the command display position in the command window: left / center / right @default left @type select @option Left-justified @value left @option center @value center @option Right-justified @value right @param --コモンウィンドウの設定-- @text --Common window settings-- @param Common Width @desc Sets the width of the common window. @default 240 @param Common Height @desc Sets the common window height. @default 240 @param --コモンウィンドウの表示内容設定-- @text -- Common window display settings -- @param Actor Status Space @desc Specify the interval between each text. FTKR_CustomSimpleActorStatus.js is required. @default 0,0,0,0 @param Actor Status Space In Text @desc Specifies the interval when displaying multiple items in a text. FTKR_CustomSimpleActorStatus.js is required. @default 5 @type number @param Actor Status Width Rate @desc Specifies the display width ratio of Text1~Text3. FTKR_CustomSimpleActorStatus.js is required. @default 1,0,0 @param --セレクトウィンドウの設定-- @text --Select window settings-- @param Select Width @desc Sets the width of the select window. @default 240 @param Select Height @desc Sets the height of the select window. @default 240 @param Select Cursor Height @desc Sets the cursor height for the select window. @default 1 @type number @param Select Max Cols @desc Sets the maximum number of columns in the select window. @default 2 @type number @param --セレクトウィンドウの表示内容設定-- @text --Select window display settings-- @param Select Status Space @desc Specify the interval between each text. FTKR_CustomSimpleActorStatus.js is required. @default 0,0,0,0 @param Select Status Space In Text @desc Specifies the interval when displaying multiple items in a text. FTKR_CustomSimpleActorStatus.js is required. @default 5 @type number @param Select Status Width Rate @desc Specifies the display width ratio of Text1~Text3. FTKR_CustomSimpleActorStatus.js is required. @default 1,0,0