From 0701e5e479a06a3a235275259a24b8319eee0e88 Mon Sep 17 00:00:00 2001 From: dazedanon Date: Wed, 18 Mar 2026 01:36:06 -0500 Subject: [PATCH] New plugin --- modules/rpgmakermvmz.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/rpgmakermvmz.py b/modules/rpgmakermvmz.py index 1eb24d7..bd036ea 100644 --- a/modules/rpgmakermvmz.py +++ b/modules/rpgmakermvmz.py @@ -79,7 +79,7 @@ LEAVE = False # FIRSTLINESPEAKERS: Guess speaker from first line. FIRSTLINESPEAKERS = False # INLINE401SPEAKERS: Extract speaker from "Name「dialogue」" inline format on 401 lines. -INLINE401SPEAKERS = True +INLINE401SPEAKERS = False # FACENAME101: Map face name -> speaker. FACENAME101 = False # Face name -> speaker mapping for FACENAME101. @@ -1013,6 +1013,7 @@ def parseNames(data, filename, context): (r"\n(.+?)\n<", False), (r"text:(.+)>", False), (r"\d][^,>]*)", False), + (r"<コメント:\n?(.*?)>", True), ] for entry in entries: @@ -1352,6 +1353,7 @@ def searchNames(data, pbar, context, filename): (r"\n(.+?)\n<", False), (r"text:(.+)>", False), (r"\d][^,>]*)", False), + (r"<コメント:\n?(.*?)>", True), ] # For each entry, collect all note matches for idx, entry in enumerate(data):