Plugin Command Arguments en - yktsr/Text2Frame-MV GitHub Wiki
Plugin Command Arguments for RPG Maker MV
ζ₯ζ¬θͺ | English
By setting arguments in the plugin command for RPG Maker MV, you can execute with different parameters than those specified in the plugin parameters, such as text files and map IDs.
-
Example 1: Import text/message.txt to map ID 1, event ID 2, page ID 3 without overwriting.
IMPORT_MESSAGE_TO_EVENT text message.txt 1 2 3 falseγ‘γγ»γΌγΈγγ€γγ³γγ«γ€γ³γγΌγ text message.txt 1 2 3 false
The arguments are, in order: "Source Folder Name", "Source File Name", "Destination Map ID", "Destination Event ID", "Destination Page ID", "Overwrite Flag".
-
Example 2: Import text/message.txt to common event ID 3 with overwriting.
IMPORT_MESSAGE_TO_CE text message.txt 3 trueγ‘γγ»γΌγΈγγ³γ’γ³γ€γγ³γγ«γ€γ³γγΌγ text message.txt 3 true
The arguments are, in order: "Source Folder Name", "Source File Name", "Destination Common Event ID", "Overwrite Flag".
Old Plugin Command Arguments (Deprecated)
The latest version (after RPG Maker MZ support, ver2.0.0) and the old version (before RPG Maker MZ support, ver1.4.1) have different specifications for importing to events. Execution is still possible with the old version specifications, but it is deprecated.
-
Example: Import text/message.txt to map ID 1, event ID 2 without overwriting (page ID is 1).
IMPORT_MESSAGE_TO_EVENT text message.txt 1 2 falseγ‘γγ»γΌγΈγγ€γγ³γγ«γ€γ³γγΌγ text message.txt 1 2 false
In the old version, page ID could not be specified and was always 1. The arguments are, in order: "Source Folder Name", "Source File Name", "Destination Map ID", "Destination Event ID", "Overwrite Flag".