Frame2Text en - yktsr/Text2Frame-MV GitHub Wiki

Reverse Conversion Plugin Frame2Text

ζ—₯本θͺž | English

We also provide Frame2Text, a plugin that exports RPG Maker MV/MZ event commands to text in the Text2Frame notation format.

This was developed based on a proposal and implementation submitted by:

Execution Method for RPG Maker MV

  1. Create a folder in the project's top-level folder (where data and img are located).

  2. Note down the map ID, event ID, page ID, and common event ID you want to export to a text file.

    • Map ID is listed in the upper left of the window that appears when you right-click a map on the left side of the screen and select "Edit".
    • Event ID is listed in the upper left of the event editor that appears when you double-click an event.
    • Page ID is listed below the event name in the event editor.
    • Common event ID can be checked from the data list of common events in the database.
  3. Edit the plugin parameters from the plugin management screen as follows:

    • Enter the folder name you created in step 1 in "Output Folder Name". (Default is text)
    • Enter the desired text file name in "Output File Name". (Default is message.txt)
    • Enter the common event ID you noted in step 2 in "Output Common Event ID". (Default is 1)
    • Enter the map ID you noted in step 2 in "Output Map ID". (Default is 1)
    • Enter the event ID you noted in step 2 in "Output Event ID". (Default is 2)
    • Enter the page ID you noted in step 2 in "Output Page ID". (Default is 1)
    • Enter true or false in "English Tags" for the language to be output to text. (Default is true (English))
      • Example of name tag when true: <Name: Harold>
      • Example of name tag when false: <名前: ハロルド>
  4. Create a plugin command with one of the following:

    • To export a map event, execute one of the following plugin commands:
      • EXPORT_EVENT_TO_MESSAGE
      • γ‚€γƒ™γƒ³γƒˆγ‚’γƒ‘γƒƒγ‚»γƒΌγ‚Έγ«γ‚¨γ‚―γ‚ΉγƒοΌγƒˆ
    • To export a common event, execute one of the following plugin commands:
      • EXPORT_CE_TO_MESSAGE
      • γ‚³γƒ’γƒ³γ‚€γƒ™γƒ³γƒˆγ‚’γƒ‘γƒƒγ‚»γƒΌγ‚Έγ«γ‚¨γ‚―γ‚ΉγƒγƒΌγƒˆ
  5. Execute the created event command via test play or event test.

    • If successful, messages will be displayed showing the exported MapID, EventID, PageID, Common EventID, folder, and file name.
    • If failed, messages like Save failed./ δΏε­˜γ«ε€±ζ•—γ—γΎγ—γŸ γƒ•γ‚‘γ‚€γƒ«γŒι–‹γ„γ¦γ„γͺいか璺θͺγ—てください will be displayed.
      • In this case, check that the specified folder has been created and that the specified file is not open.

Plugin Command Arguments for RPG Maker MV

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: Export map ID 1, event ID 2, page ID 3 to text/message.txt

EXPORT_EVENT_TO_MESSAGE text message.txt 1 2 3
γ‚€γƒ™γƒ³γƒˆγ‚’γƒ‘γƒƒγ‚»γƒΌγ‚Έγ«γ‚¨γ‚―γ‚ΉγƒοΌγƒˆ text message.txt 1 2 3

Example 2: Export common event ID 3 to text/message.txt

EXPORT_CE_TO_MESSAGE text message.txt 3
γ‚³γƒ’γƒ³γ‚€γƒ™γƒ³γƒˆγ‚’γƒ‘γƒƒγ‚»γƒΌγ‚Έγ«γ‚¨γ‚―γ‚ΉγƒγƒΌγƒˆ text message.txt 3

Execution Method for RPG Maker MZ

  1. Create a folder in the project's top-level folder (where data and img are located).

  2. Note down the map ID, event ID, page ID, and common event ID you want to export to a text file.

    • Map ID is listed in the upper left of the window that appears when you right-click a map on the left side of the screen and select "Edit".
    • Event ID is listed in the upper left of the event editor that appears when you double-click an event.
    • Page ID is listed below the event name in the event editor.
    • Common event ID can be checked from the data list of common events in the database.
  3. Edit the plugin parameters from the plugin management screen as follows:

    • Enter true or false in "English Tags" for the language to be output to text. (Default is true (English))
      • Example of name tag when true: <Name: Reid>
      • Example of name tag when false: <名前: γƒͺード>
  4. Create a plugin command using the following procedure:

    • To export a map event:
      • Select "Export Event".
      • Enter the folder name you created in step 1 in "Output Folder Name". (Default is text)
      • Enter the desired text file name in "Output File Name". (Default is message.txt)
      • Enter the map ID you noted in step 2 in "Output Map ID". (Default is 1)
      • Enter the event ID you noted in step 2 in "Output Event ID". (Default is 2)
      • Enter the page ID you noted in step 2 in "Output Page ID". (Default is 1)
    • To export a common event:
      • Select "Export Common Event".
      • Enter the folder name you created in step 1 in "Output Folder Name". (Default is text)
      • Enter the desired text file name in "Output File Name". (Default is message.txt)
      • Enter the common event ID you noted in step 2 in "Output Common Event ID". (Default is 1)
  5. Execute the created event command via test play or event test.

    • If successful, messages will be displayed showing the exported MapID, EventID, PageID, Common EventID, folder, and file name.
    • If failed, messages like Save failed./ δΏε­˜γ«ε€±ζ•—γ—γΎγ—γŸ γƒ•γ‚‘γ‚€γƒ«γŒι–‹γ„γ¦γ„γͺいか璺θͺγ—てください will be displayed.
      • In this case, check that the specified folder has been created and that the specified file is not open.

Precautions

  • The plugin author cannot respond to the restoration of corrupted projects under any circumstances, so please be careful.
  • Text file character encoding only supports UTF-8.
⚠️ **GitHub.com Fallback** ⚠️