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.
Make Screen Capture - MakeScreenCapture.js
Plugin desc : Screen Capture Management Plugin
License : MIT License
Author : Triacontane
Website : https://triacontane.blogspot.com/
Desc page : https://triacontane.blogspot.com/
Download Page : https://raw.githubusercontent.com/munokura/triacontane-MV-plugins/refs/heads/main/MakeScreenCapture.js
File name : MakeScreenCapture.js
Help of plugin :
@url https://triacontane.blogspot.com/ @plugindesc Screen Capture Management 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 ----- You can capture gameplay footage and save it to a file or display it as a picture. Captures are performed at the following times: - When a function key or PrintScreen button is pressed - At regular intervals - When a plugin command is executed Commands other than plugin commands are only valid during test play. You can specify either an absolute or relative path to save the captured file, and OS environment variables (such as %USERPROFILE%) are also supported. You can also automatically embed a signature when capturing. You can specify a signature as a string or an image. (If both are specified, the image takes priority.) Note! The display state of the captured picture cannot be saved. Please erase it using "Clear Picture" before saving. Note! The capture output function is only available in local environments. It does not work on browsers or smartphones. Plugin Command Details Execute from the "Plugin Command" event command. (Separate parameters with a space.) MSC_MAKE Creates and saves a capture at the time of execution. Example: MSC_MAKE MSC_PICTURE Displays the saved screen capture in Picture. Execute "Show Picture" immediately after this command to display the captured picture. Example: MSC_PICTURE MSC_SAVE [filename] Saves the saved screen capture to a file. You can specify any file name. The extension is automatically set, so no setting is necessary. Example: MSC_SAVE image 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 FuncKeyPngCapture @desc Function keys for capturing and saving files. @type select @default F6 @option none @option F1 @option F2 @option F3 @option F4 @option F5 @option F6 @option F7 @option F8 @option F9 @option F10 @option F11 @option F12 @param FuncKeyJpegCapture @desc Function keys for capturing and saving files. @type select @default F7 @option none @option F1 @option F2 @option F3 @option F4 @option F5 @option F6 @option F7 @option F8 @option F9 @option F10 @option F11 @option F12 @param FuncKeyWebpCapture @desc Function keys for capturing and saving files. @type select @default F9 @option none @option F1 @option F2 @option F3 @option F4 @option F5 @option F6 @option F7 @option F8 @option F9 @option F10 @option F11 @option F12 @param SimultaneousCtrl @desc Whether or not you need to press the Ctrl key simultaneously when using each function. Use this when there is a conflict with the target key of another plugin. @type boolean @default false @param SimultaneousAlt @desc Whether or not the Alt key must be pressed simultaneously when using each function. Use this when there is a conflict with the target key of another plugin. @type boolean @default false @param FileName @desc The file name of the image. @default image @param Location @desc The output path of the file. Relative and absolute paths can be used. @default captures @param FileFormat @desc The default image save format (png/jpeg/webp). @type select @default png @option png @option jpeg @option webp @param NumberDigit @desc The number of digits in the capture file sequence. Please note that the number is initialized each time the game is run. @type number @default 2 @param TimeStamp @desc When set to ON, a timestamp will be added instead of a sequential number. (ON/OFF) @type boolean @default true @param Signature @desc This is the signature that will be written in the bottom right corner of the image when it is saved. @default @param SignatureSize @desc The font size of the signature. @type number @default 22 @param SignatureImage @desc This is the image file name that will be written in the bottom right corner of the image when saved. It will be located in "img/pictures". No extension is required. @type file @require 1 @dir img/pictures/ @param Interval @desc The interval (in seconds) at which the capture is scheduled. @type number @default 0 @param SeName @desc The file name of the sound effect to play when capturing. @type file @require 1 @dir audio/se/ @param JpegQuality @desc The quality of the JPEG output. The smaller the value, the smaller the file size. (1...10) @type number @default 9 @min 1 @max 10