Ejemplo n.º 1
0
        private void checkPCConsoleTOCbinToolStripMenuItem_Click(object sender, EventArgs e)
        {
            OpenFileDialog d = new OpenFileDialog();

            d.Filter = "PCConsoleTOC.bin|PCConsoleTOC.bin";
            if (d.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                TOCbinUpdater.UpdateTocBin(d.FileName, ME3Directory.gamePath, listBox1, pb1);
            }
        }
Ejemplo n.º 2
0
 public void SaveAllChanges()
 {
     DebugOutput.PrintLn("Saving all changes to files...");
     foreach (Levelfile l in Levels)
     {
         l.level.SaveChanges();
     }
     DebugOutput.PrintLn("Running Tocbinupdater...");
     TOCbinUpdater.UpdateTocBin(ME3Directory.tocFile, ME3Directory.gamePath, null, null);
     DebugOutput.PrintLn("Done.");
 }
Ejemplo n.º 3
0
 public void InvolvedUpdate(string toc, string path)
 {
     TOCbinUpdater.UpdateTocBin(toc, path, listBox1, pb1);
 }
Ejemplo n.º 4
0
 public void EasyUpdate()
 {
     TOCbinUpdater.UpdateTocBin(ME3Directory.tocFile, ME3Directory.gamePath, listBox1, pb1);
 }