From 7dfba957bda79285683580a362408ac5442f212b Mon Sep 17 00:00:00 2001 From: TeoTwawki Date: Tue, 19 May 2015 05:31:43 -0400 Subject: [PATCH] MassExtractor can now handle dialog tables for Zones with an ID greater than 255. --- MassExtractor/Program.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/MassExtractor/Program.cs b/MassExtractor/Program.cs index 7f2d004..c7c17e9 100644 --- a/MassExtractor/Program.cs +++ b/MassExtractor/Program.cs @@ -335,6 +335,10 @@ private static int Main() } // Whitegate's 2nd dialog table Program.ExtractFile(57945, "dialog-table-50-2.xml"); + for (ushort i = 0; i < 0x100; ++i) + { + Program.ExtractFile(85590 + i, String.Format("dialog-table-{0:000}.xml", i + 255)); + } // Mob Lists for (ushort i = 0; i < 0x100; ++i) {