added script generator

This commit is contained in:
Bitl 2020-03-24 11:59:01 -07:00
parent dfcebc3f48
commit b60997e76a
2 changed files with 11 additions and 1 deletions

View File

@ -63,7 +63,8 @@
"ClientScript Documentation",
"Asset Localizer",
"Splash Tester",
"RBXMeshConverter GUI"});
"RBXMeshConverter GUI",
"ROBLOX Script Generator"});
this.listBox1.Location = new System.Drawing.Point(12, 70);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(260, 95);

View File

@ -1,4 +1,5 @@
using System;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Windows.Forms;
@ -71,6 +72,14 @@ namespace NovetusLauncher
Obj2MeshV1GUI obj = new Obj2MeshV1GUI();
obj.Show();
}
else if (listBox1.SelectedIndex == 6)
{
Process proc = new Process();
proc.StartInfo.FileName = GlobalVars.ConfigDir + "\\RSG_1_4.exe";
proc.StartInfo.CreateNoWindow = false;
proc.StartInfo.UseShellExecute = false;
proc.Start();
}
}
}
}