Skip to content

Commit

Permalink
Merge pull request #11 from TeoTwawki/master
Browse files Browse the repository at this point in the history
MassExtractor can now handle dialog tables for Zones with an ID greater than 255.
  • Loading branch information
IryokuChevalier committed May 19, 2015
2 parents 23954dd + 7dfba95 commit 7d25b2c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MassExtractor/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 7d25b2c

Please sign in to comment.