diff --git a/NovetusLauncher/NovetusFuncs/CodeExtensions.cs b/NovetusLauncher/NovetusFuncs/CodeExtensions.cs
index 9661de8..b7a0d1d 100644
--- a/NovetusLauncher/NovetusFuncs/CodeExtensions.cs
+++ b/NovetusLauncher/NovetusFuncs/CodeExtensions.cs
@@ -141,13 +141,25 @@ static class SubstringExtensions
//credit to https://stackoverflow.com/questions/23247941/c-sharp-how-to-remove-tabcontrol-border
public partial class TabControlWithoutHeader : TabControl
{
- public TabControlWithoutHeader()
+ int layoutval = 1;
+
+ public TabControlWithoutHeader(int layout)
{
- if (!DesignMode) Multiline = true;
+ layoutval = layout;
+ if (layoutval == 1)
+ {
+ if (!DesignMode) Multiline = true;
+ }
}
protected override void WndProc(ref Message m)
{
+ if (layoutval == 2)
+ {
+ base.WndProc(ref m);
+ return;
+ }
+
if (m.Msg == 0x1328 && !DesignMode)
m.Result = new IntPtr(1);
else
diff --git a/NovetusLauncher/NovetusLauncher/CharacterCustomization.Designer.cs b/NovetusLauncher/NovetusLauncher/CharacterCustomization.Designer.cs
index 8e57abf..6f44ff6 100644
--- a/NovetusLauncher/NovetusLauncher/CharacterCustomization.Designer.cs
+++ b/NovetusLauncher/NovetusLauncher/CharacterCustomization.Designer.cs
@@ -50,7 +50,7 @@ namespace NovetusLauncher
this.button73 = new System.Windows.Forms.Button();
this.button72 = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
- this.tabControl1 = new TabControlWithoutHeader();
+ this.tabControl1 = new TabControlWithoutHeader(1);
this.tabPage1 = new System.Windows.Forms.TabPage();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.button61 = new System.Windows.Forms.Button();
@@ -108,7 +108,7 @@ namespace NovetusLauncher
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.tabPage2 = new System.Windows.Forms.TabPage();
- this.tabControl2 = new TabControlWithoutHeader();
+ this.tabControl2 = new TabControlWithoutHeader(1);
this.tabPage10 = new System.Windows.Forms.TabPage();
this.label10 = new System.Windows.Forms.Label();
this.textBox2 = new System.Windows.Forms.TextBox();
diff --git a/NovetusLauncher/NovetusLauncher/MainForm.Designer.cs b/NovetusLauncher/NovetusLauncher/MainForm.Designer.cs
index 9f81c9a..d20d9ab 100644
--- a/NovetusLauncher/NovetusLauncher/MainForm.Designer.cs
+++ b/NovetusLauncher/NovetusLauncher/MainForm.Designer.cs
@@ -6,6 +6,10 @@
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
+ //TODO: ADD 1.1 LAYOUT TO CHARACTER CUSTOMIZATION AND ADD SETTINGS TO 1.1 LAYOUT.
+#define EDITOR //for editing the design in VS. comment before release.
+#define EDITORLAYOUT1 //comment this out to edit the 1.1 layout.
+//#define RETAIL //for release and testing. MAKE SURE YOU COPY/PASTE CHANGES FROM BOTH LAYOUTS INTO Layout11() AND Layout12().
namespace NovetusLauncher
{
partial class MainForm
@@ -28,14 +32,18 @@ namespace NovetusLauncher
}
base.Dispose(disposing);
}
-
- ///
- /// This method is required for Windows Forms designer support.
- /// Do not change the method contents inside the source code editor. The Forms designer might
- /// not be able to load this method if it was changed manually.
- ///
- private void InitializeComponent(int layout = 1)
- {
+
+ ///
+ /// This method is required for Windows Forms designer support.
+ /// Do not change the method contents inside the source code editor. The Forms designer might
+ /// not be able to load this method if it was changed manually.
+ ///
+ ///
+
+#if EDITOR
+ private void InitializeComponent()
+ {
+#if EDITORLAYOUT1
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.button25 = new System.Windows.Forms.Button();
this.button21 = new System.Windows.Forms.Button();
@@ -65,7 +73,7 @@ namespace NovetusLauncher
this.button28 = new System.Windows.Forms.Button();
this.button34 = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
- this.tabControl1 = new TabControlWithoutHeader();
+ this.tabControl1 = new TabControlWithoutHeader(1);
this.tabPage1 = new System.Windows.Forms.TabPage();
this.label24 = new System.Windows.Forms.Label();
this.label23 = new System.Windows.Forms.Label();
@@ -164,1279 +172,4945 @@ namespace NovetusLauncher
this.panel4.SuspendLayout();
this.SuspendLayout();
- if (layout == 1)
- {
- //
- // button25
- //
- this.button25.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button25.Location = new System.Drawing.Point(278, 3);
- this.button25.Name = "button25";
- this.button25.Size = new System.Drawing.Size(75, 20);
- this.button25.TabIndex = 56;
- this.button25.Text = "Install Addon";
- this.button25.UseVisualStyleBackColor = true;
- this.button25.Click += new System.EventHandler(this.button25_Click);
- //
- // button21
- //
- this.button21.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button21.Location = new System.Drawing.Point(356, 3);
- this.button21.Name = "button21";
- this.button21.Size = new System.Drawing.Size(128, 20);
- this.button21.TabIndex = 44;
- this.button21.Text = "Register UserAgent Library";
- this.button21.UseVisualStyleBackColor = true;
- this.button21.Click += new System.EventHandler(this.Button21Click);
- //
- // textBox5
- //
- this.textBox5.Location = new System.Drawing.Point(97, 25);
- this.textBox5.Multiline = true;
- this.textBox5.Name = "textBox5";
- this.textBox5.Size = new System.Drawing.Size(71, 18);
- this.textBox5.TabIndex = 20;
- this.textBox5.Text = "0";
- this.textBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- this.textBox5.TextChanged += new System.EventHandler(this.TextBox5TextChanged);
- //
- // label15
- //
- this.label15.Location = new System.Drawing.Point(57, 6);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(40, 16);
- this.label15.TabIndex = 12;
- this.label15.Text = "Name:";
- //
- // label13
- //
- this.label13.Location = new System.Drawing.Point(57, 27);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(34, 13);
- this.label13.TabIndex = 7;
- this.label13.Text = "ID:";
- //
- // textBox2
- //
- this.textBox2.Location = new System.Drawing.Point(97, 3);
- this.textBox2.Name = "textBox2";
- this.textBox2.Size = new System.Drawing.Size(121, 20);
- this.textBox2.TabIndex = 11;
- this.textBox2.Text = "Player";
- this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- this.textBox2.TextChanged += new System.EventHandler(this.TextBox2TextChanged);
- //
- // button4
- //
- this.button4.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button4.Location = new System.Drawing.Point(171, 24);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(48, 20);
- this.button4.TabIndex = 9;
- this.button4.Text = "Regen";
- this.button4.UseVisualStyleBackColor = true;
- this.button4.Click += new System.EventHandler(this.Button4Click);
- //
- // pictureBox2
- //
- this.pictureBox2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox2.BackgroundImage")));
- this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.pictureBox2.Location = new System.Drawing.Point(3, 3);
- this.pictureBox2.Name = "pictureBox2";
- this.pictureBox2.Size = new System.Drawing.Size(43, 41);
- this.pictureBox2.TabIndex = 7;
- this.pictureBox2.TabStop = false;
- //
- // button8
- //
- this.button8.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button8.Location = new System.Drawing.Point(6, 3);
- this.button8.Name = "button8";
- this.button8.Size = new System.Drawing.Size(104, 20);
- this.button8.TabIndex = 35;
- this.button8.Text = "Customize Character";
- this.button8.UseVisualStyleBackColor = true;
- this.button8.Click += new System.EventHandler(this.Button8Click);
- //
- // button3
- //
- this.button3.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button3.Location = new System.Drawing.Point(157, 3);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(81, 20);
- this.button3.TabIndex = 6;
- this.button3.Text = "Studio with Map";
- this.button3.UseVisualStyleBackColor = true;
- this.button3.Click += new System.EventHandler(this.Button3Click);
- //
- // label25
- //
- this.label25.Location = new System.Drawing.Point(236, 10);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(109, 14);
- this.label25.TabIndex = 16;
- this.label25.Text = "SELECTED CLIENT:";
- //
- // label26
- //
- this.label26.Location = new System.Drawing.Point(341, 10);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(391, 13);
- this.label26.TabIndex = 17;
- this.label26.Text = "2009E";
- //
- // label27
- //
- this.label27.Location = new System.Drawing.Point(236, 24);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(95, 12);
- this.label27.TabIndex = 18;
- this.label27.Text = "SELECTED MAP:";
- //
- // label28
- //
- this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label28.Location = new System.Drawing.Point(329, 25);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(403, 11);
- this.label28.TabIndex = 19;
- this.label28.Text = "Baseplate.rbxl";
- //
- // label11
- //
- this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label11.Location = new System.Drawing.Point(3, 212);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(75, 48);
- this.label11.TabIndex = 50;
- this.label11.Text = "v1.0";
- this.label11.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label12
- //
- this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label12.Location = new System.Drawing.Point(4, 47);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(214, 17);
- this.label12.TabIndex = 0;
- this.label12.Text = "Novetus!";
- this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // label16
- //
- this.label16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
- this.label16.Location = new System.Drawing.Point(52, 3);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(2, 41);
- this.label16.TabIndex = 51;
- //
- // button20
- //
- this.button20.Location = new System.Drawing.Point(3, 30);
- this.button20.Name = "button20";
- this.button20.Size = new System.Drawing.Size(75, 23);
- this.button20.TabIndex = 57;
- this.button20.TabStop = false;
- this.button20.Text = "HOST";
- this.button20.UseVisualStyleBackColor = true;
- this.button20.Click += new System.EventHandler(this.button20_Click);
- //
- // button27
- //
- this.button27.Location = new System.Drawing.Point(3, 4);
- this.button27.Name = "button27";
- this.button27.Size = new System.Drawing.Size(75, 23);
- this.button27.TabIndex = 58;
- this.button27.TabStop = false;
- this.button27.Text = "JOIN";
- this.button27.UseVisualStyleBackColor = true;
- this.button27.Click += new System.EventHandler(this.button27_Click);
- //
- // panel1
- //
- this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
- this.panel1.Controls.Add(this.button33);
- this.panel1.Controls.Add(this.button32);
- this.panel1.Controls.Add(this.button31);
- this.panel1.Controls.Add(this.button30);
- this.panel1.Controls.Add(this.button29);
- this.panel1.Controls.Add(this.label11);
- this.panel1.Controls.Add(this.button28);
- this.panel1.Controls.Add(this.button27);
- this.panel1.Controls.Add(this.button20);
- this.panel1.Location = new System.Drawing.Point(1, 74);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(84, 272);
- this.panel1.TabIndex = 59;
- //
- // button33
- //
- this.button33.Location = new System.Drawing.Point(3, 186);
- this.button33.Name = "button33";
- this.button33.Size = new System.Drawing.Size(75, 23);
- this.button33.TabIndex = 64;
- this.button33.TabStop = false;
- this.button33.Text = "SETTINGS";
- this.button33.UseVisualStyleBackColor = true;
- this.button33.Click += new System.EventHandler(this.button33_Click);
- //
- // button32
- //
- this.button32.Location = new System.Drawing.Point(3, 160);
- this.button32.Name = "button32";
- this.button32.Size = new System.Drawing.Size(75, 23);
- this.button32.TabIndex = 63;
- this.button32.TabStop = false;
- this.button32.Text = "UPDATES";
- this.button32.UseVisualStyleBackColor = true;
- this.button32.Click += new System.EventHandler(this.button32_Click);
- //
- // button31
- //
- this.button31.Location = new System.Drawing.Point(3, 134);
- this.button31.Name = "button31";
- this.button31.Size = new System.Drawing.Size(75, 23);
- this.button31.TabIndex = 62;
- this.button31.TabStop = false;
- this.button31.Text = "CONSOLE";
- this.button31.UseVisualStyleBackColor = true;
- this.button31.Click += new System.EventHandler(this.button31_Click);
- //
- // button30
- //
- this.button30.Location = new System.Drawing.Point(3, 108);
- this.button30.Name = "button30";
- this.button30.Size = new System.Drawing.Size(75, 23);
- this.button30.TabIndex = 61;
- this.button30.TabStop = false;
- this.button30.Text = "SAVED";
- this.button30.UseVisualStyleBackColor = true;
- this.button30.Click += new System.EventHandler(this.button30_Click);
- //
- // button29
- //
- this.button29.Location = new System.Drawing.Point(3, 82);
- this.button29.Name = "button29";
- this.button29.Size = new System.Drawing.Size(75, 23);
- this.button29.TabIndex = 60;
- this.button29.TabStop = false;
- this.button29.Text = "MAPS";
- this.button29.UseVisualStyleBackColor = true;
- this.button29.Click += new System.EventHandler(this.button29_Click);
- //
- // button28
- //
- this.button28.Location = new System.Drawing.Point(3, 56);
- this.button28.Name = "button28";
- this.button28.Size = new System.Drawing.Size(75, 23);
- this.button28.TabIndex = 59;
- this.button28.TabStop = false;
- this.button28.Text = "CLIENTS";
- this.button28.UseVisualStyleBackColor = true;
- this.button28.Click += new System.EventHandler(this.button28_Click);
- //
- // button34
- //
- this.button34.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button34.Location = new System.Drawing.Point(241, 3);
- this.button34.Name = "button34";
- this.button34.Size = new System.Drawing.Size(34, 20);
- this.button34.TabIndex = 60;
- this.button34.Text = "SDK";
- this.button34.UseVisualStyleBackColor = true;
- this.button34.Click += new System.EventHandler(this.button34_Click);
- //
- // panel2
- //
- this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
- this.panel2.Controls.Add(this.tabControl1);
- this.panel2.Location = new System.Drawing.Point(91, 74);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(646, 311);
- this.panel2.TabIndex = 61;
- //
- // tabControl1
- //
- this.tabControl1.Alignment = System.Windows.Forms.TabAlignment.Bottom;
- this.tabControl1.Controls.Add(this.tabPage1);
- this.tabControl1.Controls.Add(this.tabPage2);
- this.tabControl1.Controls.Add(this.tabPage3);
- this.tabControl1.Controls.Add(this.tabPage4);
- this.tabControl1.Controls.Add(this.tabPage6);
- this.tabControl1.Controls.Add(this.tabPage7);
- this.tabControl1.Controls.Add(this.tabPage8);
- this.tabControl1.Controls.Add(this.tabPage5);
- this.tabControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.tabControl1.Location = new System.Drawing.Point(3, 3);
- this.tabControl1.Multiline = true;
- this.tabControl1.Name = "tabControl1";
- this.tabControl1.SelectedIndex = 0;
- this.tabControl1.Size = new System.Drawing.Size(633, 291);
- this.tabControl1.TabIndex = 1;
- this.tabControl1.TabStop = false;
- this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
- //
- // tabPage1
- //
- this.tabPage1.Controls.Add(this.label24);
- this.tabPage1.Controls.Add(this.label23);
- this.tabPage1.Controls.Add(this.label2);
- this.tabPage1.Controls.Add(this.label1);
- this.tabPage1.Controls.Add(this.button7);
- this.tabPage1.Controls.Add(this.button11);
- this.tabPage1.Controls.Add(this.numericUpDown1);
- this.tabPage1.Controls.Add(this.button19);
- this.tabPage1.Controls.Add(this.button10);
- this.tabPage1.Controls.Add(this.label4);
- this.tabPage1.Controls.Add(this.button1);
- this.tabPage1.Controls.Add(this.textBox1);
- this.tabPage1.Location = new System.Drawing.Point(4, 4);
- this.tabPage1.Name = "tabPage1";
- this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage1.RightToLeft = System.Windows.Forms.RightToLeft.No;
- this.tabPage1.Size = new System.Drawing.Size(625, 265);
- this.tabPage1.TabIndex = 0;
- this.tabPage1.Text = "JOIN";
- this.tabPage1.ToolTipText = "Join a server via IP Address";
- this.tabPage1.UseVisualStyleBackColor = true;
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Location = new System.Drawing.Point(365, 7);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(60, 13);
- this.label24.TabIndex = 52;
- this.label24.Text = "Server Port";
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.Location = new System.Drawing.Point(200, 7);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(92, 13);
- this.label23.TabIndex = 51;
- this.label23.Text = "Server IP Address";
- //
- // label2
- //
- this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
- this.label2.Location = new System.Drawing.Point(9, 200);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(612, 2);
- this.label2.TabIndex = 50;
- //
- // label1
- //
- this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
- this.label1.Location = new System.Drawing.Point(9, 80);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(612, 2);
- this.label1.TabIndex = 49;
- //
- // button7
- //
- this.button7.Location = new System.Drawing.Point(395, 49);
- this.button7.Name = "button7";
- this.button7.Size = new System.Drawing.Size(51, 21);
- this.button7.TabIndex = 48;
- this.button7.Text = "RESET";
- this.button7.UseVisualStyleBackColor = true;
- this.button7.Click += new System.EventHandler(this.Button7Click);
- //
- // button11
- //
- this.button11.Location = new System.Drawing.Point(344, 49);
- this.button11.Name = "button11";
- this.button11.Size = new System.Drawing.Size(45, 21);
- this.button11.TabIndex = 46;
- this.button11.Text = "SAVE";
- this.button11.UseVisualStyleBackColor = true;
- this.button11.Click += new System.EventHandler(this.Button11Click);
- //
- // numericUpDown1
- //
- this.numericUpDown1.Location = new System.Drawing.Point(344, 23);
- this.numericUpDown1.Maximum = new decimal(new int[] {
+ //
+ // button25
+ //
+ this.button25.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button25.Location = new System.Drawing.Point(278, 3);
+ this.button25.Name = "button25";
+ this.button25.Size = new System.Drawing.Size(75, 20);
+ this.button25.TabIndex = 56;
+ this.button25.Text = "Install Addon";
+ this.button25.UseVisualStyleBackColor = true;
+ this.button25.Click += new System.EventHandler(this.button25_Click);
+ //
+ // button21
+ //
+ this.button21.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button21.Location = new System.Drawing.Point(356, 3);
+ this.button21.Name = "button21";
+ this.button21.Size = new System.Drawing.Size(128, 20);
+ this.button21.TabIndex = 44;
+ this.button21.Text = "Register UserAgent Library";
+ this.button21.UseVisualStyleBackColor = true;
+ this.button21.Click += new System.EventHandler(this.Button21Click);
+ //
+ // textBox5
+ //
+ this.textBox5.Location = new System.Drawing.Point(97, 25);
+ this.textBox5.Multiline = true;
+ this.textBox5.Name = "textBox5";
+ this.textBox5.Size = new System.Drawing.Size(71, 18);
+ this.textBox5.TabIndex = 20;
+ this.textBox5.Text = "0";
+ this.textBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.textBox5.TextChanged += new System.EventHandler(this.TextBox5TextChanged);
+ //
+ // label15
+ //
+ this.label15.Location = new System.Drawing.Point(57, 6);
+ this.label15.Name = "label15";
+ this.label15.Size = new System.Drawing.Size(40, 16);
+ this.label15.TabIndex = 12;
+ this.label15.Text = "Name:";
+ //
+ // label13
+ //
+ this.label13.Location = new System.Drawing.Point(57, 27);
+ this.label13.Name = "label13";
+ this.label13.Size = new System.Drawing.Size(34, 13);
+ this.label13.TabIndex = 7;
+ this.label13.Text = "ID:";
+ //
+ // textBox2
+ //
+ this.textBox2.Location = new System.Drawing.Point(97, 3);
+ this.textBox2.Name = "textBox2";
+ this.textBox2.Size = new System.Drawing.Size(121, 20);
+ this.textBox2.TabIndex = 11;
+ this.textBox2.Text = "Player";
+ this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.textBox2.TextChanged += new System.EventHandler(this.TextBox2TextChanged);
+ //
+ // button4
+ //
+ this.button4.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button4.Location = new System.Drawing.Point(171, 24);
+ this.button4.Name = "button4";
+ this.button4.Size = new System.Drawing.Size(48, 20);
+ this.button4.TabIndex = 9;
+ this.button4.Text = "Regen";
+ this.button4.UseVisualStyleBackColor = true;
+ this.button4.Click += new System.EventHandler(this.Button4Click);
+ //
+ // pictureBox2
+ //
+ this.pictureBox2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox2.BackgroundImage")));
+ this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.pictureBox2.Location = new System.Drawing.Point(3, 3);
+ this.pictureBox2.Name = "pictureBox2";
+ this.pictureBox2.Size = new System.Drawing.Size(43, 41);
+ this.pictureBox2.TabIndex = 7;
+ this.pictureBox2.TabStop = false;
+ //
+ // button8
+ //
+ this.button8.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button8.Location = new System.Drawing.Point(6, 3);
+ this.button8.Name = "button8";
+ this.button8.Size = new System.Drawing.Size(104, 20);
+ this.button8.TabIndex = 35;
+ this.button8.Text = "Customize Character";
+ this.button8.UseVisualStyleBackColor = true;
+ this.button8.Click += new System.EventHandler(this.Button8Click);
+ //
+ // button3
+ //
+ this.button3.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button3.Location = new System.Drawing.Point(157, 3);
+ this.button3.Name = "button3";
+ this.button3.Size = new System.Drawing.Size(81, 20);
+ this.button3.TabIndex = 6;
+ this.button3.Text = "Studio with Map";
+ this.button3.UseVisualStyleBackColor = true;
+ this.button3.Click += new System.EventHandler(this.Button3Click);
+ //
+ // label25
+ //
+ this.label25.Location = new System.Drawing.Point(236, 10);
+ this.label25.Name = "label25";
+ this.label25.Size = new System.Drawing.Size(109, 14);
+ this.label25.TabIndex = 16;
+ this.label25.Text = "SELECTED CLIENT:";
+ //
+ // label26
+ //
+ this.label26.Location = new System.Drawing.Point(341, 10);
+ this.label26.Name = "label26";
+ this.label26.Size = new System.Drawing.Size(391, 13);
+ this.label26.TabIndex = 17;
+ this.label26.Text = "2009E";
+ //
+ // label27
+ //
+ this.label27.Location = new System.Drawing.Point(236, 24);
+ this.label27.Name = "label27";
+ this.label27.Size = new System.Drawing.Size(95, 12);
+ this.label27.TabIndex = 18;
+ this.label27.Text = "SELECTED MAP:";
+ //
+ // label28
+ //
+ this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label28.Location = new System.Drawing.Point(329, 25);
+ this.label28.Name = "label28";
+ this.label28.Size = new System.Drawing.Size(403, 11);
+ this.label28.TabIndex = 19;
+ this.label28.Text = "Baseplate.rbxl";
+ //
+ // label11
+ //
+ this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label11.Location = new System.Drawing.Point(3, 212);
+ this.label11.Name = "label11";
+ this.label11.Size = new System.Drawing.Size(75, 48);
+ this.label11.TabIndex = 50;
+ this.label11.Text = "v1.0";
+ this.label11.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // label12
+ //
+ this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label12.Location = new System.Drawing.Point(4, 47);
+ this.label12.Name = "label12";
+ this.label12.Size = new System.Drawing.Size(214, 17);
+ this.label12.TabIndex = 0;
+ this.label12.Text = "Novetus!";
+ this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // label16
+ //
+ this.label16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label16.Location = new System.Drawing.Point(52, 3);
+ this.label16.Name = "label16";
+ this.label16.Size = new System.Drawing.Size(2, 41);
+ this.label16.TabIndex = 51;
+ //
+ // button20
+ //
+ this.button20.Location = new System.Drawing.Point(3, 30);
+ this.button20.Name = "button20";
+ this.button20.Size = new System.Drawing.Size(75, 23);
+ this.button20.TabIndex = 57;
+ this.button20.TabStop = false;
+ this.button20.Text = "HOST";
+ this.button20.UseVisualStyleBackColor = true;
+ this.button20.Click += new System.EventHandler(this.button20_Click);
+ //
+ // button27
+ //
+ this.button27.Location = new System.Drawing.Point(3, 4);
+ this.button27.Name = "button27";
+ this.button27.Size = new System.Drawing.Size(75, 23);
+ this.button27.TabIndex = 58;
+ this.button27.TabStop = false;
+ this.button27.Text = "JOIN";
+ this.button27.UseVisualStyleBackColor = true;
+ this.button27.Click += new System.EventHandler(this.button27_Click);
+ //
+ // panel1
+ //
+ this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.panel1.Controls.Add(this.button33);
+ this.panel1.Controls.Add(this.button32);
+ this.panel1.Controls.Add(this.button31);
+ this.panel1.Controls.Add(this.button30);
+ this.panel1.Controls.Add(this.button29);
+ this.panel1.Controls.Add(this.label11);
+ this.panel1.Controls.Add(this.button28);
+ this.panel1.Controls.Add(this.button27);
+ this.panel1.Controls.Add(this.button20);
+ this.panel1.Location = new System.Drawing.Point(1, 74);
+ this.panel1.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(84, 272);
+ this.panel1.TabIndex = 59;
+ //
+ // button33
+ //
+ this.button33.Location = new System.Drawing.Point(3, 186);
+ this.button33.Name = "button33";
+ this.button33.Size = new System.Drawing.Size(75, 23);
+ this.button33.TabIndex = 64;
+ this.button33.TabStop = false;
+ this.button33.Text = "SETTINGS";
+ this.button33.UseVisualStyleBackColor = true;
+ this.button33.Click += new System.EventHandler(this.button33_Click);
+ //
+ // button32
+ //
+ this.button32.Location = new System.Drawing.Point(3, 160);
+ this.button32.Name = "button32";
+ this.button32.Size = new System.Drawing.Size(75, 23);
+ this.button32.TabIndex = 63;
+ this.button32.TabStop = false;
+ this.button32.Text = "UPDATES";
+ this.button32.UseVisualStyleBackColor = true;
+ this.button32.Click += new System.EventHandler(this.button32_Click);
+ //
+ // button31
+ //
+ this.button31.Location = new System.Drawing.Point(3, 134);
+ this.button31.Name = "button31";
+ this.button31.Size = new System.Drawing.Size(75, 23);
+ this.button31.TabIndex = 62;
+ this.button31.TabStop = false;
+ this.button31.Text = "CONSOLE";
+ this.button31.UseVisualStyleBackColor = true;
+ this.button31.Click += new System.EventHandler(this.button31_Click);
+ //
+ // button30
+ //
+ this.button30.Location = new System.Drawing.Point(3, 108);
+ this.button30.Name = "button30";
+ this.button30.Size = new System.Drawing.Size(75, 23);
+ this.button30.TabIndex = 61;
+ this.button30.TabStop = false;
+ this.button30.Text = "SAVED";
+ this.button30.UseVisualStyleBackColor = true;
+ this.button30.Click += new System.EventHandler(this.button30_Click);
+ //
+ // button29
+ //
+ this.button29.Location = new System.Drawing.Point(3, 82);
+ this.button29.Name = "button29";
+ this.button29.Size = new System.Drawing.Size(75, 23);
+ this.button29.TabIndex = 60;
+ this.button29.TabStop = false;
+ this.button29.Text = "MAPS";
+ this.button29.UseVisualStyleBackColor = true;
+ this.button29.Click += new System.EventHandler(this.button29_Click);
+ //
+ // button28
+ //
+ this.button28.Location = new System.Drawing.Point(3, 56);
+ this.button28.Name = "button28";
+ this.button28.Size = new System.Drawing.Size(75, 23);
+ this.button28.TabIndex = 59;
+ this.button28.TabStop = false;
+ this.button28.Text = "CLIENTS";
+ this.button28.UseVisualStyleBackColor = true;
+ this.button28.Click += new System.EventHandler(this.button28_Click);
+ //
+ // button34
+ //
+ this.button34.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button34.Location = new System.Drawing.Point(241, 3);
+ this.button34.Name = "button34";
+ this.button34.Size = new System.Drawing.Size(34, 20);
+ this.button34.TabIndex = 60;
+ this.button34.Text = "SDK";
+ this.button34.UseVisualStyleBackColor = true;
+ this.button34.Click += new System.EventHandler(this.button34_Click);
+ //
+ // panel2
+ //
+ this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.panel2.Controls.Add(this.tabControl1);
+ this.panel2.Location = new System.Drawing.Point(91, 74);
+ this.panel2.Name = "panel2";
+ this.panel2.Size = new System.Drawing.Size(646, 311);
+ this.panel2.TabIndex = 61;
+ //
+ // tabControl1
+ //
+ this.tabControl1.Alignment = System.Windows.Forms.TabAlignment.Bottom;
+ this.tabControl1.Controls.Add(this.tabPage1);
+ this.tabControl1.Controls.Add(this.tabPage2);
+ this.tabControl1.Controls.Add(this.tabPage3);
+ this.tabControl1.Controls.Add(this.tabPage4);
+ this.tabControl1.Controls.Add(this.tabPage6);
+ this.tabControl1.Controls.Add(this.tabPage7);
+ this.tabControl1.Controls.Add(this.tabPage8);
+ this.tabControl1.Controls.Add(this.tabPage5);
+ this.tabControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.tabControl1.Location = new System.Drawing.Point(3, 3);
+ this.tabControl1.Multiline = true;
+ this.tabControl1.Name = "tabControl1";
+ this.tabControl1.SelectedIndex = 0;
+ this.tabControl1.Size = new System.Drawing.Size(633, 291);
+ this.tabControl1.TabIndex = 1;
+ this.tabControl1.TabStop = false;
+ this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
+ //
+ // tabPage1
+ //
+ this.tabPage1.Controls.Add(this.label24);
+ this.tabPage1.Controls.Add(this.label23);
+ this.tabPage1.Controls.Add(this.label2);
+ this.tabPage1.Controls.Add(this.label1);
+ this.tabPage1.Controls.Add(this.button7);
+ this.tabPage1.Controls.Add(this.button11);
+ this.tabPage1.Controls.Add(this.numericUpDown1);
+ this.tabPage1.Controls.Add(this.button19);
+ this.tabPage1.Controls.Add(this.button10);
+ this.tabPage1.Controls.Add(this.label4);
+ this.tabPage1.Controls.Add(this.button1);
+ this.tabPage1.Controls.Add(this.textBox1);
+ this.tabPage1.Location = new System.Drawing.Point(4, 4);
+ this.tabPage1.Name = "tabPage1";
+ this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage1.RightToLeft = System.Windows.Forms.RightToLeft.No;
+ this.tabPage1.Size = new System.Drawing.Size(625, 265);
+ this.tabPage1.TabIndex = 0;
+ this.tabPage1.Text = "JOIN";
+ this.tabPage1.ToolTipText = "Join a server via IP Address";
+ this.tabPage1.UseVisualStyleBackColor = true;
+ //
+ // label24
+ //
+ this.label24.AutoSize = true;
+ this.label24.Location = new System.Drawing.Point(365, 7);
+ this.label24.Name = "label24";
+ this.label24.Size = new System.Drawing.Size(60, 13);
+ this.label24.TabIndex = 52;
+ this.label24.Text = "Server Port";
+ //
+ // label23
+ //
+ this.label23.AutoSize = true;
+ this.label23.Location = new System.Drawing.Point(200, 7);
+ this.label23.Name = "label23";
+ this.label23.Size = new System.Drawing.Size(92, 13);
+ this.label23.TabIndex = 51;
+ this.label23.Text = "Server IP Address";
+ //
+ // label2
+ //
+ this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label2.Location = new System.Drawing.Point(9, 200);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(612, 2);
+ this.label2.TabIndex = 50;
+ //
+ // label1
+ //
+ this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label1.Location = new System.Drawing.Point(9, 80);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(612, 2);
+ this.label1.TabIndex = 49;
+ //
+ // button7
+ //
+ this.button7.Location = new System.Drawing.Point(395, 49);
+ this.button7.Name = "button7";
+ this.button7.Size = new System.Drawing.Size(51, 21);
+ this.button7.TabIndex = 48;
+ this.button7.Text = "RESET";
+ this.button7.UseVisualStyleBackColor = true;
+ this.button7.Click += new System.EventHandler(this.Button7Click);
+ //
+ // button11
+ //
+ this.button11.Location = new System.Drawing.Point(344, 49);
+ this.button11.Name = "button11";
+ this.button11.Size = new System.Drawing.Size(45, 21);
+ this.button11.TabIndex = 46;
+ this.button11.Text = "SAVE";
+ this.button11.UseVisualStyleBackColor = true;
+ this.button11.Click += new System.EventHandler(this.Button11Click);
+ //
+ // numericUpDown1
+ //
+ this.numericUpDown1.Location = new System.Drawing.Point(344, 23);
+ this.numericUpDown1.Maximum = new decimal(new int[] {
65535,
0,
0,
0});
- this.numericUpDown1.Minimum = new decimal(new int[] {
+ this.numericUpDown1.Minimum = new decimal(new int[] {
1,
0,
0,
0});
- this.numericUpDown1.Name = "numericUpDown1";
- this.numericUpDown1.Size = new System.Drawing.Size(102, 20);
- this.numericUpDown1.TabIndex = 18;
- this.numericUpDown1.Value = new decimal(new int[] {
+ this.numericUpDown1.Name = "numericUpDown1";
+ this.numericUpDown1.Size = new System.Drawing.Size(102, 20);
+ this.numericUpDown1.TabIndex = 18;
+ this.numericUpDown1.Value = new decimal(new int[] {
53640,
0,
0,
0});
- this.numericUpDown1.ValueChanged += new System.EventHandler(this.NumericUpDown1ValueChanged);
- //
- // button19
- //
- this.button19.Location = new System.Drawing.Point(325, 210);
- this.button19.Name = "button19";
- this.button19.Size = new System.Drawing.Size(293, 36);
- this.button19.TabIndex = 16;
- this.button19.Text = "PLAY SOLO";
- this.button19.UseVisualStyleBackColor = true;
- this.button19.Click += new System.EventHandler(this.Button19Click);
- //
- // button10
- //
- this.button10.Location = new System.Drawing.Point(183, 49);
- this.button10.Name = "button10";
- this.button10.Size = new System.Drawing.Size(120, 21);
- this.button10.TabIndex = 15;
- this.button10.Text = "SAVE SERVER";
- this.button10.UseVisualStyleBackColor = true;
- this.button10.Click += new System.EventHandler(this.Button10Click);
- //
- // label4
- //
- this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.ForeColor = System.Drawing.Color.Red;
- this.label4.Location = new System.Drawing.Point(9, 89);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(613, 99);
- this.label4.TabIndex = 4;
- this.label4.Text = resources.GetString("label4.Text");
- this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(10, 210);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(293, 36);
- this.button1.TabIndex = 3;
- this.button1.Text = "JOIN SERVER";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.Button1Click);
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(149, 23);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(189, 20);
- this.textBox1.TabIndex = 0;
- this.textBox1.Text = "localhost";
- this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- this.textBox1.TextChanged += new System.EventHandler(this.TextBox1TextChanged);
- //
- // tabPage2
- //
- this.tabPage2.Controls.Add(this.label19);
- this.tabPage2.Controls.Add(this.textBox3);
- this.tabPage2.Controls.Add(this.label17);
- this.tabPage2.Controls.Add(this.checkBox4);
- this.tabPage2.Controls.Add(this.button23);
- this.tabPage2.Controls.Add(this.button22);
- this.tabPage2.Controls.Add(this.numericUpDown3);
- this.tabPage2.Controls.Add(this.numericUpDown2);
- this.tabPage2.Controls.Add(this.label29);
- this.tabPage2.Controls.Add(this.label35);
- this.tabPage2.Controls.Add(this.button18);
- this.tabPage2.Controls.Add(this.button2);
- this.tabPage2.Location = new System.Drawing.Point(4, 4);
- this.tabPage2.Name = "tabPage2";
- this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage2.Size = new System.Drawing.Size(625, 265);
- this.tabPage2.TabIndex = 1;
- this.tabPage2.Text = "HOST";
- this.tabPage2.ToolTipText = "Start a server for other players to play";
- this.tabPage2.UseVisualStyleBackColor = true;
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.Location = new System.Drawing.Point(6, 5);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(129, 13);
- this.label19.TabIndex = 60;
- this.label19.Text = "SERVER INFORMATION";
- //
- // textBox3
- //
- this.textBox3.BackColor = System.Drawing.SystemColors.ControlLightLight;
- this.textBox3.Location = new System.Drawing.Point(6, 21);
- this.textBox3.Multiline = true;
- this.textBox3.Name = "textBox3";
- this.textBox3.ReadOnly = true;
- this.textBox3.ScrollBars = System.Windows.Forms.ScrollBars.Both;
- this.textBox3.Size = new System.Drawing.Size(612, 113);
- this.textBox3.TabIndex = 59;
- //
- // label17
- //
- this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label17.ForeColor = System.Drawing.Color.Red;
- this.label17.Location = new System.Drawing.Point(116, 137);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(382, 14);
- this.label17.TabIndex = 58;
- this.label17.Text = "NOTE: The webserver port is static and it cannot be changed. It is 40735.";
- this.label17.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // checkBox4
- //
- this.checkBox4.Location = new System.Drawing.Point(318, 180);
- this.checkBox4.Name = "checkBox4";
- this.checkBox4.Size = new System.Drawing.Size(104, 17);
- this.checkBox4.TabIndex = 57;
- this.checkBox4.Text = "Toggle UPnP";
- this.checkBox4.UseVisualStyleBackColor = true;
- this.checkBox4.CheckedChanged += new System.EventHandler(this.CheckBox4CheckedChanged);
- this.checkBox4.Click += new System.EventHandler(this.CheckBox4Click);
- //
- // button23
- //
- this.button23.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button23.Location = new System.Drawing.Point(176, 177);
- this.button23.Name = "button23";
- this.button23.Size = new System.Drawing.Size(66, 25);
- this.button23.TabIndex = 51;
- this.button23.Text = "SAVE";
- this.button23.UseVisualStyleBackColor = true;
- this.button23.Click += new System.EventHandler(this.Button23Click);
- //
- // button22
- //
- this.button22.Location = new System.Drawing.Point(248, 177);
- this.button22.Name = "button22";
- this.button22.Size = new System.Drawing.Size(63, 25);
- this.button22.TabIndex = 50;
- this.button22.Text = "RESET";
- this.button22.UseVisualStyleBackColor = true;
- this.button22.Click += new System.EventHandler(this.Button22Click);
- //
- // numericUpDown3
- //
- this.numericUpDown3.Location = new System.Drawing.Point(383, 154);
- this.numericUpDown3.Maximum = new decimal(new int[] {
+ this.numericUpDown1.ValueChanged += new System.EventHandler(this.NumericUpDown1ValueChanged);
+ //
+ // button19
+ //
+ this.button19.Location = new System.Drawing.Point(325, 210);
+ this.button19.Name = "button19";
+ this.button19.Size = new System.Drawing.Size(293, 36);
+ this.button19.TabIndex = 16;
+ this.button19.Text = "PLAY SOLO";
+ this.button19.UseVisualStyleBackColor = true;
+ this.button19.Click += new System.EventHandler(this.Button19Click);
+ //
+ // button10
+ //
+ this.button10.Location = new System.Drawing.Point(183, 49);
+ this.button10.Name = "button10";
+ this.button10.Size = new System.Drawing.Size(120, 21);
+ this.button10.TabIndex = 15;
+ this.button10.Text = "SAVE SERVER";
+ this.button10.UseVisualStyleBackColor = true;
+ this.button10.Click += new System.EventHandler(this.Button10Click);
+ //
+ // label4
+ //
+ this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label4.ForeColor = System.Drawing.Color.Red;
+ this.label4.Location = new System.Drawing.Point(9, 89);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(613, 99);
+ this.label4.TabIndex = 4;
+ this.label4.Text = resources.GetString("label4.Text");
+ this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // button1
+ //
+ this.button1.Location = new System.Drawing.Point(10, 210);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(293, 36);
+ this.button1.TabIndex = 3;
+ this.button1.Text = "JOIN SERVER";
+ this.button1.UseVisualStyleBackColor = true;
+ this.button1.Click += new System.EventHandler(this.Button1Click);
+ //
+ // textBox1
+ //
+ this.textBox1.Location = new System.Drawing.Point(149, 23);
+ this.textBox1.Name = "textBox1";
+ this.textBox1.Size = new System.Drawing.Size(189, 20);
+ this.textBox1.TabIndex = 0;
+ this.textBox1.Text = "localhost";
+ this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.textBox1.TextChanged += new System.EventHandler(this.TextBox1TextChanged);
+ //
+ // tabPage2
+ //
+ this.tabPage2.Controls.Add(this.label19);
+ this.tabPage2.Controls.Add(this.textBox3);
+ this.tabPage2.Controls.Add(this.label17);
+ this.tabPage2.Controls.Add(this.checkBox4);
+ this.tabPage2.Controls.Add(this.button23);
+ this.tabPage2.Controls.Add(this.button22);
+ this.tabPage2.Controls.Add(this.numericUpDown3);
+ this.tabPage2.Controls.Add(this.numericUpDown2);
+ this.tabPage2.Controls.Add(this.label29);
+ this.tabPage2.Controls.Add(this.label35);
+ this.tabPage2.Controls.Add(this.button18);
+ this.tabPage2.Controls.Add(this.button2);
+ this.tabPage2.Location = new System.Drawing.Point(4, 4);
+ this.tabPage2.Name = "tabPage2";
+ this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage2.Size = new System.Drawing.Size(625, 265);
+ this.tabPage2.TabIndex = 1;
+ this.tabPage2.Text = "HOST";
+ this.tabPage2.ToolTipText = "Start a server for other players to play";
+ this.tabPage2.UseVisualStyleBackColor = true;
+ //
+ // label19
+ //
+ this.label19.AutoSize = true;
+ this.label19.Location = new System.Drawing.Point(6, 5);
+ this.label19.Name = "label19";
+ this.label19.Size = new System.Drawing.Size(129, 13);
+ this.label19.TabIndex = 60;
+ this.label19.Text = "SERVER INFORMATION";
+ //
+ // textBox3
+ //
+ this.textBox3.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.textBox3.Location = new System.Drawing.Point(6, 21);
+ this.textBox3.Multiline = true;
+ this.textBox3.Name = "textBox3";
+ this.textBox3.ReadOnly = true;
+ this.textBox3.ScrollBars = System.Windows.Forms.ScrollBars.Both;
+ this.textBox3.Size = new System.Drawing.Size(612, 113);
+ this.textBox3.TabIndex = 59;
+ //
+ // label17
+ //
+ this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label17.ForeColor = System.Drawing.Color.Red;
+ this.label17.Location = new System.Drawing.Point(116, 137);
+ this.label17.Name = "label17";
+ this.label17.Size = new System.Drawing.Size(382, 14);
+ this.label17.TabIndex = 58;
+ this.label17.Text = "NOTE: The webserver port is static and it cannot be changed. It is 40735.";
+ this.label17.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // checkBox4
+ //
+ this.checkBox4.Location = new System.Drawing.Point(318, 180);
+ this.checkBox4.Name = "checkBox4";
+ this.checkBox4.Size = new System.Drawing.Size(104, 17);
+ this.checkBox4.TabIndex = 57;
+ this.checkBox4.Text = "Toggle UPnP";
+ this.checkBox4.UseVisualStyleBackColor = true;
+ this.checkBox4.CheckedChanged += new System.EventHandler(this.CheckBox4CheckedChanged);
+ this.checkBox4.Click += new System.EventHandler(this.CheckBox4Click);
+ //
+ // button23
+ //
+ this.button23.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button23.Location = new System.Drawing.Point(176, 177);
+ this.button23.Name = "button23";
+ this.button23.Size = new System.Drawing.Size(66, 25);
+ this.button23.TabIndex = 51;
+ this.button23.Text = "SAVE";
+ this.button23.UseVisualStyleBackColor = true;
+ this.button23.Click += new System.EventHandler(this.Button23Click);
+ //
+ // button22
+ //
+ this.button22.Location = new System.Drawing.Point(248, 177);
+ this.button22.Name = "button22";
+ this.button22.Size = new System.Drawing.Size(63, 25);
+ this.button22.TabIndex = 50;
+ this.button22.Text = "RESET";
+ this.button22.UseVisualStyleBackColor = true;
+ this.button22.Click += new System.EventHandler(this.Button22Click);
+ //
+ // numericUpDown3
+ //
+ this.numericUpDown3.Location = new System.Drawing.Point(383, 154);
+ this.numericUpDown3.Maximum = new decimal(new int[] {
256,
0,
0,
0});
- this.numericUpDown3.Minimum = new decimal(new int[] {
+ this.numericUpDown3.Minimum = new decimal(new int[] {
1,
0,
0,
0});
- this.numericUpDown3.Name = "numericUpDown3";
- this.numericUpDown3.Size = new System.Drawing.Size(49, 20);
- this.numericUpDown3.TabIndex = 49;
- this.numericUpDown3.Value = new decimal(new int[] {
+ this.numericUpDown3.Name = "numericUpDown3";
+ this.numericUpDown3.Size = new System.Drawing.Size(49, 20);
+ this.numericUpDown3.TabIndex = 49;
+ this.numericUpDown3.Value = new decimal(new int[] {
12,
0,
0,
0});
- this.numericUpDown3.ValueChanged += new System.EventHandler(this.NumericUpDown3ValueChanged);
- //
- // numericUpDown2
- //
- this.numericUpDown2.Location = new System.Drawing.Point(247, 154);
- this.numericUpDown2.Maximum = new decimal(new int[] {
+ this.numericUpDown3.ValueChanged += new System.EventHandler(this.NumericUpDown3ValueChanged);
+ //
+ // numericUpDown2
+ //
+ this.numericUpDown2.Location = new System.Drawing.Point(247, 154);
+ this.numericUpDown2.Maximum = new decimal(new int[] {
65535,
0,
0,
0});
- this.numericUpDown2.Minimum = new decimal(new int[] {
+ this.numericUpDown2.Minimum = new decimal(new int[] {
1,
0,
0,
0});
- this.numericUpDown2.Name = "numericUpDown2";
- this.numericUpDown2.Size = new System.Drawing.Size(63, 20);
- this.numericUpDown2.TabIndex = 48;
- this.numericUpDown2.Value = new decimal(new int[] {
+ this.numericUpDown2.Name = "numericUpDown2";
+ this.numericUpDown2.Size = new System.Drawing.Size(63, 20);
+ this.numericUpDown2.TabIndex = 48;
+ this.numericUpDown2.Value = new decimal(new int[] {
53640,
0,
0,
0});
- this.numericUpDown2.ValueChanged += new System.EventHandler(this.NumericUpDown2ValueChanged);
- //
- // label29
- //
- this.label29.Location = new System.Drawing.Point(318, 156);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(60, 16);
- this.label29.TabIndex = 46;
- this.label29.Text = "Player Limit";
- //
- // label35
- //
- this.label35.Location = new System.Drawing.Point(176, 156);
- this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(65, 16);
- this.label35.TabIndex = 44;
- this.label35.Text = "Server Port";
- this.label35.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // button18
- //
- this.button18.Location = new System.Drawing.Point(326, 213);
- this.button18.Name = "button18";
- this.button18.Size = new System.Drawing.Size(293, 36);
- this.button18.TabIndex = 20;
- this.button18.Text = "START SERVER WITH NO GRAPHICS";
- this.button18.UseVisualStyleBackColor = true;
- this.button18.Click += new System.EventHandler(this.Button18Click);
- //
- // button2
- //
- this.button2.Location = new System.Drawing.Point(6, 213);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(293, 36);
- this.button2.TabIndex = 2;
- this.button2.Text = "START SERVER";
- this.button2.UseVisualStyleBackColor = true;
- this.button2.Click += new System.EventHandler(this.Button2Click);
- //
- // tabPage3
- //
- this.tabPage3.Controls.Add(this.textBox6);
- this.tabPage3.Controls.Add(this.label30);
- this.tabPage3.Controls.Add(this.listBox2);
- this.tabPage3.Location = new System.Drawing.Point(4, 4);
- this.tabPage3.Name = "tabPage3";
- this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage3.Size = new System.Drawing.Size(625, 265);
- this.tabPage3.TabIndex = 4;
- this.tabPage3.Text = "CLIENTS";
- this.tabPage3.ToolTipText = "Select a ROBLOX Client to load your game";
- this.tabPage3.UseVisualStyleBackColor = true;
- //
- // textBox6
- //
- this.textBox6.BackColor = System.Drawing.SystemColors.ControlLightLight;
- this.textBox6.Location = new System.Drawing.Point(6, 179);
- this.textBox6.Multiline = true;
- this.textBox6.Name = "textBox6";
- this.textBox6.ReadOnly = true;
- this.textBox6.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
- this.textBox6.Size = new System.Drawing.Size(612, 73);
- this.textBox6.TabIndex = 4;
- this.textBox6.Text = "textBox6";
- //
- // label30
- //
- this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label30.ForeColor = System.Drawing.Color.Red;
- this.label30.Location = new System.Drawing.Point(6, 118);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(612, 58);
- this.label30.TabIndex = 3;
- this.label30.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- this.label30.Visible = false;
- //
- // listBox2
- //
- this.listBox2.FormattingEnabled = true;
- this.listBox2.Location = new System.Drawing.Point(6, 7);
- this.listBox2.Name = "listBox2";
- this.listBox2.Size = new System.Drawing.Size(612, 108);
- this.listBox2.TabIndex = 2;
- this.listBox2.SelectedIndexChanged += new System.EventHandler(this.ListBox2SelectedIndexChanged);
- //
- // tabPage4
- //
- this.tabPage4.Controls.Add(this.textBox4);
- this.tabPage4.Controls.Add(this.button24);
- this.tabPage4.Controls.Add(this.treeView1);
- this.tabPage4.Controls.Add(this.button6);
- this.tabPage4.Location = new System.Drawing.Point(4, 4);
- this.tabPage4.Name = "tabPage4";
- this.tabPage4.Size = new System.Drawing.Size(625, 265);
- this.tabPage4.TabIndex = 10;
- this.tabPage4.Text = "MAPS";
- this.tabPage4.UseVisualStyleBackColor = true;
- //
- // textBox4
- //
- this.textBox4.BackColor = System.Drawing.SystemColors.ControlLightLight;
- this.textBox4.Location = new System.Drawing.Point(7, 143);
- this.textBox4.Multiline = true;
- this.textBox4.Name = "textBox4";
- this.textBox4.ReadOnly = true;
- this.textBox4.ScrollBars = System.Windows.Forms.ScrollBars.Both;
- this.textBox4.Size = new System.Drawing.Size(611, 110);
- this.textBox4.TabIndex = 67;
- //
- // button24
- //
- this.button24.Location = new System.Drawing.Point(400, 3);
- this.button24.Name = "button24";
- this.button24.Size = new System.Drawing.Size(98, 23);
- this.button24.TabIndex = 59;
- this.button24.Text = "Refresh Map List";
- this.button24.UseVisualStyleBackColor = true;
- this.button24.Click += new System.EventHandler(this.Button24Click);
- //
- // treeView1
- //
- this.treeView1.HideSelection = false;
- this.treeView1.Location = new System.Drawing.Point(7, 29);
- this.treeView1.Name = "treeView1";
- this.treeView1.Size = new System.Drawing.Size(611, 108);
- this.treeView1.TabIndex = 54;
- this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeView1AfterSelect);
- //
- // button6
- //
- this.button6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button6.Location = new System.Drawing.Point(504, 3);
- this.button6.Name = "button6";
- this.button6.Size = new System.Drawing.Size(114, 23);
- this.button6.TabIndex = 56;
- this.button6.Text = "Open Maps Folder";
- this.button6.UseVisualStyleBackColor = true;
- this.button6.Click += new System.EventHandler(this.Button6Click);
- //
- // tabPage6
- //
- this.tabPage6.Controls.Add(this.button17);
- this.tabPage6.Controls.Add(this.button16);
- this.tabPage6.Controls.Add(this.button15);
- this.tabPage6.Controls.Add(this.button14);
- this.tabPage6.Controls.Add(this.button13);
- this.tabPage6.Controls.Add(this.button12);
- this.tabPage6.Controls.Add(this.label38);
- this.tabPage6.Controls.Add(this.label39);
- this.tabPage6.Controls.Add(this.label37);
- this.tabPage6.Controls.Add(this.label36);
- this.tabPage6.Controls.Add(this.listBox4);
- this.tabPage6.Controls.Add(this.listBox3);
- this.tabPage6.Controls.Add(this.label21);
- this.tabPage6.Controls.Add(this.label14);
- this.tabPage6.Location = new System.Drawing.Point(4, 4);
- this.tabPage6.Name = "tabPage6";
- this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage6.Size = new System.Drawing.Size(625, 265);
- this.tabPage6.TabIndex = 6;
- this.tabPage6.Text = "SAVED";
- this.tabPage6.ToolTipText = "Lists all your saved servers and ports";
- this.tabPage6.UseVisualStyleBackColor = true;
- //
- // button17
- //
- this.button17.Location = new System.Drawing.Point(381, 201);
- this.button17.Name = "button17";
- this.button17.Size = new System.Drawing.Size(54, 23);
- this.button17.TabIndex = 13;
- this.button17.Text = "Add";
- this.button17.UseVisualStyleBackColor = true;
- this.button17.Click += new System.EventHandler(this.Button17Click);
- //
- // button16
- //
- this.button16.Location = new System.Drawing.Point(57, 200);
- this.button16.Name = "button16";
- this.button16.Size = new System.Drawing.Size(60, 23);
- this.button16.TabIndex = 12;
- this.button16.Text = "Add";
- this.button16.UseVisualStyleBackColor = true;
- this.button16.Click += new System.EventHandler(this.Button16Click);
- //
- // button15
- //
- this.button15.Location = new System.Drawing.Point(507, 201);
- this.button15.Name = "button15";
- this.button15.Size = new System.Drawing.Size(60, 23);
- this.button15.TabIndex = 11;
- this.button15.Text = "Reset";
- this.button15.UseVisualStyleBackColor = true;
- this.button15.Click += new System.EventHandler(this.Button15Click);
- //
- // button14
- //
- this.button14.Location = new System.Drawing.Point(188, 200);
- this.button14.Name = "button14";
- this.button14.Size = new System.Drawing.Size(55, 23);
- this.button14.TabIndex = 10;
- this.button14.Text = "Reset";
- this.button14.UseVisualStyleBackColor = true;
- this.button14.Click += new System.EventHandler(this.Button14Click);
- //
- // button13
- //
- this.button13.Location = new System.Drawing.Point(441, 201);
- this.button13.Name = "button13";
- this.button13.Size = new System.Drawing.Size(60, 23);
- this.button13.TabIndex = 9;
- this.button13.Text = "Remove";
- this.button13.UseVisualStyleBackColor = true;
- this.button13.Click += new System.EventHandler(this.Button13Click);
- //
- // button12
- //
- this.button12.Location = new System.Drawing.Point(120, 200);
- this.button12.Name = "button12";
- this.button12.Size = new System.Drawing.Size(62, 23);
- this.button12.TabIndex = 8;
- this.button12.Text = "Remove";
- this.button12.UseVisualStyleBackColor = true;
- this.button12.Click += new System.EventHandler(this.Button12Click);
- //
- // label38
- //
- this.label38.Location = new System.Drawing.Point(396, 241);
- this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(120, 20);
- this.label38.TabIndex = 7;
- //
- // label39
- //
- this.label39.Location = new System.Drawing.Point(396, 227);
- this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(149, 12);
- this.label39.TabIndex = 6;
- this.label39.Text = "CURRENT SERVER PORT:";
- //
- // label37
- //
- this.label37.Location = new System.Drawing.Point(92, 241);
- this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(120, 20);
- this.label37.TabIndex = 5;
- //
- // label36
- //
- this.label36.Location = new System.Drawing.Point(92, 227);
- this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(136, 12);
- this.label36.TabIndex = 4;
- this.label36.Text = "CURRENT SERVER IP:";
- //
- // listBox4
- //
- this.listBox4.FormattingEnabled = true;
- this.listBox4.Location = new System.Drawing.Point(325, 21);
- this.listBox4.Name = "listBox4";
- this.listBox4.Size = new System.Drawing.Size(292, 173);
- this.listBox4.TabIndex = 3;
- this.listBox4.SelectedIndexChanged += new System.EventHandler(this.ListBox4SelectedIndexChanged);
- //
- // listBox3
- //
- this.listBox3.FormattingEnabled = true;
- this.listBox3.Location = new System.Drawing.Point(6, 21);
- this.listBox3.Name = "listBox3";
- this.listBox3.Size = new System.Drawing.Size(292, 173);
- this.listBox3.TabIndex = 2;
- this.listBox3.SelectedIndexChanged += new System.EventHandler(this.ListBox3SelectedIndexChanged);
- //
- // label21
- //
- this.label21.Location = new System.Drawing.Point(325, 3);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(292, 15);
- this.label21.TabIndex = 1;
- this.label21.Text = "PORTS";
- this.label21.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label14
- //
- this.label14.Location = new System.Drawing.Point(3, 3);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(295, 15);
- this.label14.TabIndex = 0;
- this.label14.Text = "SERVERS";
- this.label14.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // tabPage7
- //
- this.tabPage7.BackColor = System.Drawing.SystemColors.ControlText;
- this.tabPage7.Controls.Add(this.richTextBox1);
- this.tabPage7.Location = new System.Drawing.Point(4, 4);
- this.tabPage7.Name = "tabPage7";
- this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage7.Size = new System.Drawing.Size(625, 265);
- this.tabPage7.TabIndex = 7;
- this.tabPage7.Text = "CMD";
- //
- // richTextBox1
- //
- this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.richTextBox1.BackColor = System.Drawing.SystemColors.ControlText;
- this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.richTextBox1.ForeColor = System.Drawing.Color.White;
- this.richTextBox1.Location = new System.Drawing.Point(3, 3);
- this.richTextBox1.Name = "richTextBox1";
- this.richTextBox1.Size = new System.Drawing.Size(616, 256);
- this.richTextBox1.TabIndex = 2;
- this.richTextBox1.Text = "";
- this.richTextBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.richTextBox1_KeyDown);
- //
- // tabPage8
- //
- this.tabPage8.Controls.Add(this.richTextBox2);
- this.tabPage8.Location = new System.Drawing.Point(4, 4);
- this.tabPage8.Name = "tabPage8";
- this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage8.Size = new System.Drawing.Size(625, 265);
- this.tabPage8.TabIndex = 8;
- this.tabPage8.Text = "UPDATES";
- this.tabPage8.UseVisualStyleBackColor = true;
- //
- // richTextBox2
- //
- this.richTextBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.richTextBox2.BackColor = System.Drawing.SystemColors.ControlLightLight;
- this.richTextBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.richTextBox2.Location = new System.Drawing.Point(3, 3);
- this.richTextBox2.Name = "richTextBox2";
- this.richTextBox2.ReadOnly = true;
- this.richTextBox2.Size = new System.Drawing.Size(616, 256);
- this.richTextBox2.TabIndex = 2;
- this.richTextBox2.Text = "";
- //
- // tabPage5
- //
- this.tabPage5.Controls.Add(this.panel5);
- this.tabPage5.Controls.Add(this.richTextBox3);
- this.tabPage5.Controls.Add(this.label10);
- this.tabPage5.Controls.Add(this.label18);
- this.tabPage5.Controls.Add(this.label8);
- this.tabPage5.Controls.Add(this.label7);
- this.tabPage5.Location = new System.Drawing.Point(4, 4);
- this.tabPage5.Name = "tabPage5";
- this.tabPage5.Size = new System.Drawing.Size(625, 265);
- this.tabPage5.TabIndex = 9;
- this.tabPage5.Text = "SETTINGS";
- this.tabPage5.UseVisualStyleBackColor = true;
- //
- // panel5
- //
- this.panel5.Controls.Add(this.label3);
- this.panel5.Controls.Add(this.comboBox2);
- this.panel5.Controls.Add(this.label31);
- this.panel5.Controls.Add(this.comboBox1);
- this.panel5.Controls.Add(this.checkBox2);
- this.panel5.Controls.Add(this.checkBox6);
- this.panel5.Controls.Add(this.checkBox7);
- this.panel5.Controls.Add(this.label22);
- this.panel5.Controls.Add(this.checkBox5);
- this.panel5.Controls.Add(this.checkBox3);
- this.panel5.Controls.Add(this.checkBox1);
- this.panel5.Controls.Add(this.button9);
- this.panel5.Controls.Add(this.button26);
- this.panel5.Controls.Add(this.button5);
- this.panel5.Location = new System.Drawing.Point(3, 4);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(200, 259);
- this.panel5.TabIndex = 68;
- //
- // label3
- //
- this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label3.ForeColor = System.Drawing.Color.Red;
- this.label3.Location = new System.Drawing.Point(3, 158);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(191, 45);
- this.label3.TabIndex = 74;
- this.label3.Text = "NOTE: Some video settings may require multiple client restarts or may require man" +
- "ual application by opening the Tools>Settings dialog in Studio and then closing " +
- "it.";
- this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // comboBox2
- //
- this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox2.FormattingEnabled = true;
- this.comboBox2.Items.AddRange(new object[] {
+ this.numericUpDown2.ValueChanged += new System.EventHandler(this.NumericUpDown2ValueChanged);
+ //
+ // label29
+ //
+ this.label29.Location = new System.Drawing.Point(318, 156);
+ this.label29.Name = "label29";
+ this.label29.Size = new System.Drawing.Size(60, 16);
+ this.label29.TabIndex = 46;
+ this.label29.Text = "Player Limit";
+ //
+ // label35
+ //
+ this.label35.Location = new System.Drawing.Point(176, 156);
+ this.label35.Name = "label35";
+ this.label35.Size = new System.Drawing.Size(65, 16);
+ this.label35.TabIndex = 44;
+ this.label35.Text = "Server Port";
+ this.label35.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // button18
+ //
+ this.button18.Location = new System.Drawing.Point(326, 213);
+ this.button18.Name = "button18";
+ this.button18.Size = new System.Drawing.Size(293, 36);
+ this.button18.TabIndex = 20;
+ this.button18.Text = "START SERVER WITH NO GRAPHICS";
+ this.button18.UseVisualStyleBackColor = true;
+ this.button18.Click += new System.EventHandler(this.Button18Click);
+ //
+ // button2
+ //
+ this.button2.Location = new System.Drawing.Point(6, 213);
+ this.button2.Name = "button2";
+ this.button2.Size = new System.Drawing.Size(293, 36);
+ this.button2.TabIndex = 2;
+ this.button2.Text = "START SERVER";
+ this.button2.UseVisualStyleBackColor = true;
+ this.button2.Click += new System.EventHandler(this.Button2Click);
+ //
+ // tabPage3
+ //
+ this.tabPage3.Controls.Add(this.textBox6);
+ this.tabPage3.Controls.Add(this.label30);
+ this.tabPage3.Controls.Add(this.listBox2);
+ this.tabPage3.Location = new System.Drawing.Point(4, 4);
+ this.tabPage3.Name = "tabPage3";
+ this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage3.Size = new System.Drawing.Size(625, 265);
+ this.tabPage3.TabIndex = 4;
+ this.tabPage3.Text = "CLIENTS";
+ this.tabPage3.ToolTipText = "Select a ROBLOX Client to load your game";
+ this.tabPage3.UseVisualStyleBackColor = true;
+ //
+ // textBox6
+ //
+ this.textBox6.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.textBox6.Location = new System.Drawing.Point(6, 179);
+ this.textBox6.Multiline = true;
+ this.textBox6.Name = "textBox6";
+ this.textBox6.ReadOnly = true;
+ this.textBox6.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
+ this.textBox6.Size = new System.Drawing.Size(612, 73);
+ this.textBox6.TabIndex = 4;
+ this.textBox6.Text = "textBox6";
+ //
+ // label30
+ //
+ this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label30.ForeColor = System.Drawing.Color.Red;
+ this.label30.Location = new System.Drawing.Point(6, 118);
+ this.label30.Name = "label30";
+ this.label30.Size = new System.Drawing.Size(612, 58);
+ this.label30.TabIndex = 3;
+ this.label30.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ this.label30.Visible = false;
+ //
+ // listBox2
+ //
+ this.listBox2.FormattingEnabled = true;
+ this.listBox2.Location = new System.Drawing.Point(6, 7);
+ this.listBox2.Name = "listBox2";
+ this.listBox2.Size = new System.Drawing.Size(612, 108);
+ this.listBox2.TabIndex = 2;
+ this.listBox2.SelectedIndexChanged += new System.EventHandler(this.ListBox2SelectedIndexChanged);
+ //
+ // tabPage4
+ //
+ this.tabPage4.Controls.Add(this.textBox4);
+ this.tabPage4.Controls.Add(this.button24);
+ this.tabPage4.Controls.Add(this.treeView1);
+ this.tabPage4.Controls.Add(this.button6);
+ this.tabPage4.Location = new System.Drawing.Point(4, 4);
+ this.tabPage4.Name = "tabPage4";
+ this.tabPage4.Size = new System.Drawing.Size(625, 265);
+ this.tabPage4.TabIndex = 10;
+ this.tabPage4.Text = "MAPS";
+ this.tabPage4.UseVisualStyleBackColor = true;
+ //
+ // textBox4
+ //
+ this.textBox4.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.textBox4.Location = new System.Drawing.Point(7, 143);
+ this.textBox4.Multiline = true;
+ this.textBox4.Name = "textBox4";
+ this.textBox4.ReadOnly = true;
+ this.textBox4.ScrollBars = System.Windows.Forms.ScrollBars.Both;
+ this.textBox4.Size = new System.Drawing.Size(611, 110);
+ this.textBox4.TabIndex = 67;
+ //
+ // button24
+ //
+ this.button24.Location = new System.Drawing.Point(400, 3);
+ this.button24.Name = "button24";
+ this.button24.Size = new System.Drawing.Size(98, 23);
+ this.button24.TabIndex = 59;
+ this.button24.Text = "Refresh Map List";
+ this.button24.UseVisualStyleBackColor = true;
+ this.button24.Click += new System.EventHandler(this.Button24Click);
+ //
+ // treeView1
+ //
+ this.treeView1.HideSelection = false;
+ this.treeView1.Location = new System.Drawing.Point(7, 29);
+ this.treeView1.Name = "treeView1";
+ this.treeView1.Size = new System.Drawing.Size(611, 108);
+ this.treeView1.TabIndex = 54;
+ this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeView1AfterSelect);
+ //
+ // button6
+ //
+ this.button6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button6.Location = new System.Drawing.Point(504, 3);
+ this.button6.Name = "button6";
+ this.button6.Size = new System.Drawing.Size(114, 23);
+ this.button6.TabIndex = 56;
+ this.button6.Text = "Open Maps Folder";
+ this.button6.UseVisualStyleBackColor = true;
+ this.button6.Click += new System.EventHandler(this.Button6Click);
+ //
+ // tabPage6
+ //
+ this.tabPage6.Controls.Add(this.button17);
+ this.tabPage6.Controls.Add(this.button16);
+ this.tabPage6.Controls.Add(this.button15);
+ this.tabPage6.Controls.Add(this.button14);
+ this.tabPage6.Controls.Add(this.button13);
+ this.tabPage6.Controls.Add(this.button12);
+ this.tabPage6.Controls.Add(this.label38);
+ this.tabPage6.Controls.Add(this.label39);
+ this.tabPage6.Controls.Add(this.label37);
+ this.tabPage6.Controls.Add(this.label36);
+ this.tabPage6.Controls.Add(this.listBox4);
+ this.tabPage6.Controls.Add(this.listBox3);
+ this.tabPage6.Controls.Add(this.label21);
+ this.tabPage6.Controls.Add(this.label14);
+ this.tabPage6.Location = new System.Drawing.Point(4, 4);
+ this.tabPage6.Name = "tabPage6";
+ this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage6.Size = new System.Drawing.Size(625, 265);
+ this.tabPage6.TabIndex = 6;
+ this.tabPage6.Text = "SAVED";
+ this.tabPage6.ToolTipText = "Lists all your saved servers and ports";
+ this.tabPage6.UseVisualStyleBackColor = true;
+ //
+ // button17
+ //
+ this.button17.Location = new System.Drawing.Point(381, 201);
+ this.button17.Name = "button17";
+ this.button17.Size = new System.Drawing.Size(54, 23);
+ this.button17.TabIndex = 13;
+ this.button17.Text = "Add";
+ this.button17.UseVisualStyleBackColor = true;
+ this.button17.Click += new System.EventHandler(this.Button17Click);
+ //
+ // button16
+ //
+ this.button16.Location = new System.Drawing.Point(57, 200);
+ this.button16.Name = "button16";
+ this.button16.Size = new System.Drawing.Size(60, 23);
+ this.button16.TabIndex = 12;
+ this.button16.Text = "Add";
+ this.button16.UseVisualStyleBackColor = true;
+ this.button16.Click += new System.EventHandler(this.Button16Click);
+ //
+ // button15
+ //
+ this.button15.Location = new System.Drawing.Point(507, 201);
+ this.button15.Name = "button15";
+ this.button15.Size = new System.Drawing.Size(60, 23);
+ this.button15.TabIndex = 11;
+ this.button15.Text = "Reset";
+ this.button15.UseVisualStyleBackColor = true;
+ this.button15.Click += new System.EventHandler(this.Button15Click);
+ //
+ // button14
+ //
+ this.button14.Location = new System.Drawing.Point(188, 200);
+ this.button14.Name = "button14";
+ this.button14.Size = new System.Drawing.Size(55, 23);
+ this.button14.TabIndex = 10;
+ this.button14.Text = "Reset";
+ this.button14.UseVisualStyleBackColor = true;
+ this.button14.Click += new System.EventHandler(this.Button14Click);
+ //
+ // button13
+ //
+ this.button13.Location = new System.Drawing.Point(441, 201);
+ this.button13.Name = "button13";
+ this.button13.Size = new System.Drawing.Size(60, 23);
+ this.button13.TabIndex = 9;
+ this.button13.Text = "Remove";
+ this.button13.UseVisualStyleBackColor = true;
+ this.button13.Click += new System.EventHandler(this.Button13Click);
+ //
+ // button12
+ //
+ this.button12.Location = new System.Drawing.Point(120, 200);
+ this.button12.Name = "button12";
+ this.button12.Size = new System.Drawing.Size(62, 23);
+ this.button12.TabIndex = 8;
+ this.button12.Text = "Remove";
+ this.button12.UseVisualStyleBackColor = true;
+ this.button12.Click += new System.EventHandler(this.Button12Click);
+ //
+ // label38
+ //
+ this.label38.Location = new System.Drawing.Point(396, 241);
+ this.label38.Name = "label38";
+ this.label38.Size = new System.Drawing.Size(120, 20);
+ this.label38.TabIndex = 7;
+ //
+ // label39
+ //
+ this.label39.Location = new System.Drawing.Point(396, 227);
+ this.label39.Name = "label39";
+ this.label39.Size = new System.Drawing.Size(149, 12);
+ this.label39.TabIndex = 6;
+ this.label39.Text = "CURRENT SERVER PORT:";
+ //
+ // label37
+ //
+ this.label37.Location = new System.Drawing.Point(92, 241);
+ this.label37.Name = "label37";
+ this.label37.Size = new System.Drawing.Size(120, 20);
+ this.label37.TabIndex = 5;
+ //
+ // label36
+ //
+ this.label36.Location = new System.Drawing.Point(92, 227);
+ this.label36.Name = "label36";
+ this.label36.Size = new System.Drawing.Size(136, 12);
+ this.label36.TabIndex = 4;
+ this.label36.Text = "CURRENT SERVER IP:";
+ //
+ // listBox4
+ //
+ this.listBox4.FormattingEnabled = true;
+ this.listBox4.Location = new System.Drawing.Point(325, 21);
+ this.listBox4.Name = "listBox4";
+ this.listBox4.Size = new System.Drawing.Size(292, 173);
+ this.listBox4.TabIndex = 3;
+ this.listBox4.SelectedIndexChanged += new System.EventHandler(this.ListBox4SelectedIndexChanged);
+ //
+ // listBox3
+ //
+ this.listBox3.FormattingEnabled = true;
+ this.listBox3.Location = new System.Drawing.Point(6, 21);
+ this.listBox3.Name = "listBox3";
+ this.listBox3.Size = new System.Drawing.Size(292, 173);
+ this.listBox3.TabIndex = 2;
+ this.listBox3.SelectedIndexChanged += new System.EventHandler(this.ListBox3SelectedIndexChanged);
+ //
+ // label21
+ //
+ this.label21.Location = new System.Drawing.Point(325, 3);
+ this.label21.Name = "label21";
+ this.label21.Size = new System.Drawing.Size(292, 15);
+ this.label21.TabIndex = 1;
+ this.label21.Text = "PORTS";
+ this.label21.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // label14
+ //
+ this.label14.Location = new System.Drawing.Point(3, 3);
+ this.label14.Name = "label14";
+ this.label14.Size = new System.Drawing.Size(295, 15);
+ this.label14.TabIndex = 0;
+ this.label14.Text = "SERVERS";
+ this.label14.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // tabPage7
+ //
+ this.tabPage7.BackColor = System.Drawing.SystemColors.ControlText;
+ this.tabPage7.Controls.Add(this.richTextBox1);
+ this.tabPage7.Location = new System.Drawing.Point(4, 4);
+ this.tabPage7.Name = "tabPage7";
+ this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage7.Size = new System.Drawing.Size(625, 265);
+ this.tabPage7.TabIndex = 7;
+ this.tabPage7.Text = "CMD";
+ //
+ // richTextBox1
+ //
+ this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.richTextBox1.BackColor = System.Drawing.SystemColors.ControlText;
+ this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox1.ForeColor = System.Drawing.Color.White;
+ this.richTextBox1.Location = new System.Drawing.Point(3, 3);
+ this.richTextBox1.Name = "richTextBox1";
+ this.richTextBox1.Size = new System.Drawing.Size(616, 256);
+ this.richTextBox1.TabIndex = 2;
+ this.richTextBox1.Text = "";
+ this.richTextBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.richTextBox1_KeyDown);
+ //
+ // tabPage8
+ //
+ this.tabPage8.Controls.Add(this.richTextBox2);
+ this.tabPage8.Location = new System.Drawing.Point(4, 4);
+ this.tabPage8.Name = "tabPage8";
+ this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage8.Size = new System.Drawing.Size(625, 265);
+ this.tabPage8.TabIndex = 8;
+ this.tabPage8.Text = "UPDATES";
+ this.tabPage8.UseVisualStyleBackColor = true;
+ //
+ // richTextBox2
+ //
+ this.richTextBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.richTextBox2.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.richTextBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox2.Location = new System.Drawing.Point(3, 3);
+ this.richTextBox2.Name = "richTextBox2";
+ this.richTextBox2.ReadOnly = true;
+ this.richTextBox2.Size = new System.Drawing.Size(616, 256);
+ this.richTextBox2.TabIndex = 2;
+ this.richTextBox2.Text = "";
+ //
+ // tabPage5
+ //
+ this.tabPage5.Controls.Add(this.panel5);
+ this.tabPage5.Controls.Add(this.richTextBox3);
+ this.tabPage5.Controls.Add(this.label10);
+ this.tabPage5.Controls.Add(this.label18);
+ this.tabPage5.Controls.Add(this.label8);
+ this.tabPage5.Controls.Add(this.label7);
+ this.tabPage5.Location = new System.Drawing.Point(4, 4);
+ this.tabPage5.Name = "tabPage5";
+ this.tabPage5.Size = new System.Drawing.Size(625, 265);
+ this.tabPage5.TabIndex = 9;
+ this.tabPage5.Text = "SETTINGS";
+ this.tabPage5.UseVisualStyleBackColor = true;
+ //
+ // panel5
+ //
+ this.panel5.Controls.Add(this.label3);
+ this.panel5.Controls.Add(this.comboBox2);
+ this.panel5.Controls.Add(this.label31);
+ this.panel5.Controls.Add(this.comboBox1);
+ this.panel5.Controls.Add(this.checkBox2);
+ this.panel5.Controls.Add(this.checkBox6);
+ this.panel5.Controls.Add(this.checkBox7);
+ this.panel5.Controls.Add(this.label22);
+ this.panel5.Controls.Add(this.checkBox5);
+ this.panel5.Controls.Add(this.checkBox3);
+ this.panel5.Controls.Add(this.checkBox1);
+ this.panel5.Controls.Add(this.button9);
+ this.panel5.Controls.Add(this.button26);
+ this.panel5.Controls.Add(this.button5);
+ this.panel5.Location = new System.Drawing.Point(3, 4);
+ this.panel5.Name = "panel5";
+ this.panel5.Size = new System.Drawing.Size(200, 259);
+ this.panel5.TabIndex = 68;
+ //
+ // label3
+ //
+ this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label3.ForeColor = System.Drawing.Color.Red;
+ this.label3.Location = new System.Drawing.Point(3, 158);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(191, 45);
+ this.label3.TabIndex = 74;
+ this.label3.Text = "NOTE: Some video settings may require multiple client restarts or may require man" +
+ "ual application by opening the Tools>Settings dialog in Studio and then closing " +
+ "it.";
+ this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // comboBox2
+ //
+ this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.comboBox2.FormattingEnabled = true;
+ this.comboBox2.Items.AddRange(new object[] {
"Very Low",
"Low",
"Medium",
"High",
"Ultra"});
- this.comboBox2.Location = new System.Drawing.Point(90, 134);
- this.comboBox2.Name = "comboBox2";
- this.comboBox2.Size = new System.Drawing.Size(84, 21);
- this.comboBox2.TabIndex = 73;
- this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
- //
- // label31
- //
- this.label31.AutoSize = true;
- this.label31.Location = new System.Drawing.Point(3, 111);
- this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(79, 13);
- this.label31.TabIndex = 69;
- this.label31.Text = "Graphics Mode";
- //
- // comboBox1
- //
- this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBox1.FormattingEnabled = true;
- this.comboBox1.Items.AddRange(new object[] {
+ this.comboBox2.Location = new System.Drawing.Point(90, 134);
+ this.comboBox2.Name = "comboBox2";
+ this.comboBox2.Size = new System.Drawing.Size(84, 21);
+ this.comboBox2.TabIndex = 73;
+ this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
+ //
+ // label31
+ //
+ this.label31.AutoSize = true;
+ this.label31.Location = new System.Drawing.Point(3, 111);
+ this.label31.Name = "label31";
+ this.label31.Size = new System.Drawing.Size(79, 13);
+ this.label31.TabIndex = 69;
+ this.label31.Text = "Graphics Mode";
+ //
+ // comboBox1
+ //
+ this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.comboBox1.FormattingEnabled = true;
+ this.comboBox1.Items.AddRange(new object[] {
"OpenGL",
"DirectX"});
- this.comboBox1.Location = new System.Drawing.Point(90, 108);
- this.comboBox1.Name = "comboBox1";
- this.comboBox1.Size = new System.Drawing.Size(84, 21);
- this.comboBox1.TabIndex = 68;
- this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
- //
- // checkBox2
- //
- this.checkBox2.AutoSize = true;
- this.checkBox2.Checked = true;
- this.checkBox2.CheckState = System.Windows.Forms.CheckState.Checked;
- this.checkBox2.Location = new System.Drawing.Point(3, 3);
- this.checkBox2.Name = "checkBox2";
- this.checkBox2.Size = new System.Drawing.Size(135, 17);
- this.checkBox2.TabIndex = 59;
- this.checkBox2.Text = "Discord Rich Presence";
- this.checkBox2.UseVisualStyleBackColor = true;
- this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
- //
- // checkBox6
- //
- this.checkBox6.Location = new System.Drawing.Point(3, 240);
- this.checkBox6.Name = "checkBox6";
- this.checkBox6.Size = new System.Drawing.Size(131, 16);
- this.checkBox6.TabIndex = 63;
- this.checkBox6.Text = "ReShade FPS Display";
- this.checkBox6.UseVisualStyleBackColor = true;
- this.checkBox6.CheckedChanged += new System.EventHandler(this.checkBox6_CheckedChanged);
- //
- // checkBox7
- //
- this.checkBox7.AutoSize = true;
- this.checkBox7.Location = new System.Drawing.Point(3, 223);
- this.checkBox7.Name = "checkBox7";
- this.checkBox7.Size = new System.Drawing.Size(164, 17);
- this.checkBox7.TabIndex = 64;
- this.checkBox7.Text = "ReShade Performance Mode";
- this.checkBox7.UseVisualStyleBackColor = true;
- this.checkBox7.CheckedChanged += new System.EventHandler(this.checkBox7_CheckedChanged);
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Location = new System.Drawing.Point(3, 137);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(84, 13);
- this.label22.TabIndex = 67;
- this.label22.Text = "Graphics Quality";
- //
- // checkBox5
- //
- this.checkBox5.AutoSize = true;
- this.checkBox5.Checked = true;
- this.checkBox5.CheckState = System.Windows.Forms.CheckState.Checked;
- this.checkBox5.Location = new System.Drawing.Point(3, 206);
- this.checkBox5.Name = "checkBox5";
- this.checkBox5.Size = new System.Drawing.Size(107, 17);
- this.checkBox5.TabIndex = 62;
- this.checkBox5.Text = "Toggle ReShade";
- this.checkBox5.UseVisualStyleBackColor = true;
- this.checkBox5.CheckedChanged += new System.EventHandler(this.checkBox5_CheckedChanged);
- //
- // checkBox3
- //
- this.checkBox3.Location = new System.Drawing.Point(3, 19);
- this.checkBox3.Name = "checkBox3";
- this.checkBox3.Size = new System.Drawing.Size(77, 19);
- this.checkBox3.TabIndex = 22;
- this.checkBox3.Text = "Local Play";
- this.checkBox3.UseVisualStyleBackColor = true;
- this.checkBox3.CheckedChanged += new System.EventHandler(this.CheckBox3CheckedChanged);
- //
- // checkBox1
- //
- this.checkBox1.Checked = true;
- this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
- this.checkBox1.Location = new System.Drawing.Point(3, 37);
- this.checkBox1.Name = "checkBox1";
- this.checkBox1.Size = new System.Drawing.Size(124, 17);
- this.checkBox1.TabIndex = 5;
- this.checkBox1.Text = "Minimize on Launch";
- this.checkBox1.UseCompatibleTextRendering = true;
- this.checkBox1.UseVisualStyleBackColor = true;
- this.checkBox1.CheckedChanged += new System.EventHandler(this.CheckBox1CheckedChanged);
- //
- // button9
- //
- this.button9.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button9.Location = new System.Drawing.Point(83, 79);
- this.button9.Name = "button9";
- this.button9.Size = new System.Drawing.Size(69, 20);
- this.button9.TabIndex = 37;
- this.button9.Text = "Reset Config";
- this.button9.UseVisualStyleBackColor = true;
- this.button9.Click += new System.EventHandler(this.Button9Click);
- //
- // button26
- //
- this.button26.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button26.Location = new System.Drawing.Point(3, 55);
- this.button26.Name = "button26";
- this.button26.Size = new System.Drawing.Size(94, 21);
- this.button26.TabIndex = 57;
- this.button26.Text = "Clear Asset Cache";
- this.button26.UseVisualStyleBackColor = true;
- this.button26.Click += new System.EventHandler(this.button26_Click);
- //
- // button5
- //
- this.button5.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button5.Location = new System.Drawing.Point(3, 79);
- this.button5.Name = "button5";
- this.button5.Size = new System.Drawing.Size(74, 20);
- this.button5.TabIndex = 10;
- this.button5.Text = "Save Config";
- this.button5.UseVisualStyleBackColor = true;
- this.button5.Click += new System.EventHandler(this.Button5Click);
- //
- // richTextBox3
- //
- this.richTextBox3.BackColor = System.Drawing.SystemColors.ControlLightLight;
- this.richTextBox3.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.richTextBox3.Location = new System.Drawing.Point(209, 4);
- this.richTextBox3.Name = "richTextBox3";
- this.richTextBox3.ReadOnly = true;
- this.richTextBox3.Size = new System.Drawing.Size(413, 219);
- this.richTextBox3.TabIndex = 60;
- this.richTextBox3.Text = "credits text";
- //
- // label10
- //
- this.label10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
- this.label10.Location = new System.Drawing.Point(209, 85);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(413, 2);
- this.label10.TabIndex = 53;
- //
- // label18
- //
- this.label18.Location = new System.Drawing.Point(336, 237);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(155, 16);
- this.label18.TabIndex = 58;
- this.label18.Text = "qwertyuiopasdfghjklz";
- this.label18.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label8
- //
- this.label8.Location = new System.Drawing.Point(209, 237);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(122, 16);
- this.label8.TabIndex = 48;
- this.label8.Text = "0.13333337";
- this.label8.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- this.label8.Click += new System.EventHandler(this.label8_Click);
- //
- // label7
- //
- this.label7.Location = new System.Drawing.Point(491, 237);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(128, 16);
- this.label7.TabIndex = 54;
- this.label7.Text = "PROJECT STARLIGHT";
- this.label7.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // panel3
- //
- this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
- this.panel3.Controls.Add(this.pictureBox2);
- this.panel3.Controls.Add(this.textBox2);
- this.panel3.Controls.Add(this.textBox5);
- this.panel3.Controls.Add(this.button4);
- this.panel3.Controls.Add(this.label16);
- this.panel3.Controls.Add(this.label15);
- this.panel3.Controls.Add(this.label12);
- this.panel3.Controls.Add(this.label13);
- this.panel3.Location = new System.Drawing.Point(1, 4);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(229, 69);
- this.panel3.TabIndex = 62;
- //
- // panel4
- //
- this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
- this.panel4.Controls.Add(this.button35);
- this.panel4.Controls.Add(this.button34);
- this.panel4.Controls.Add(this.button21);
- this.panel4.Controls.Add(this.button8);
- this.panel4.Controls.Add(this.button3);
- this.panel4.Controls.Add(this.button25);
- this.panel4.Location = new System.Drawing.Point(236, 41);
- this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(501, 32);
- this.panel4.TabIndex = 63;
- //
- // button35
- //
- this.button35.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.button35.Location = new System.Drawing.Point(113, 3);
- this.button35.Name = "button35";
- this.button35.Size = new System.Drawing.Size(41, 20);
- this.button35.TabIndex = 61;
- this.button35.Text = "Studio";
- this.button35.UseVisualStyleBackColor = true;
- this.button35.Click += new System.EventHandler(this.button35_Click);
- //
- // MainForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.SystemColors.ControlLightLight;
- this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.ClientSize = new System.Drawing.Size(739, 421);
- this.Controls.Add(this.label25);
- this.Controls.Add(this.label26);
- this.Controls.Add(this.panel4);
- this.Controls.Add(this.label27);
- this.Controls.Add(this.panel3);
- this.Controls.Add(this.panel2);
- this.Controls.Add(this.panel1);
- this.Controls.Add(this.label28);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "MainForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Novetus";
- this.Closing += new System.ComponentModel.CancelEventHandler(this.MainFormClose);
- this.Load += new System.EventHandler(this.MainFormLoad);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
- this.panel1.ResumeLayout(false);
- this.panel2.ResumeLayout(false);
- this.tabControl1.ResumeLayout(false);
- this.tabPage1.ResumeLayout(false);
- this.tabPage1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
- this.tabPage2.ResumeLayout(false);
- this.tabPage2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
- this.tabPage3.ResumeLayout(false);
- this.tabPage3.PerformLayout();
- this.tabPage4.ResumeLayout(false);
- this.tabPage4.PerformLayout();
- this.tabPage6.ResumeLayout(false);
- this.tabPage7.ResumeLayout(false);
- this.tabPage8.ResumeLayout(false);
- this.tabPage5.ResumeLayout(false);
- this.panel5.ResumeLayout(false);
- this.panel5.PerformLayout();
- this.panel3.ResumeLayout(false);
- this.panel3.PerformLayout();
- this.panel4.ResumeLayout(false);
- this.ResumeLayout(false);
+ this.comboBox1.Location = new System.Drawing.Point(90, 108);
+ this.comboBox1.Name = "comboBox1";
+ this.comboBox1.Size = new System.Drawing.Size(84, 21);
+ this.comboBox1.TabIndex = 68;
+ this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
+ //
+ // checkBox2
+ //
+ this.checkBox2.AutoSize = true;
+ this.checkBox2.Checked = true;
+ this.checkBox2.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.checkBox2.Location = new System.Drawing.Point(3, 3);
+ this.checkBox2.Name = "checkBox2";
+ this.checkBox2.Size = new System.Drawing.Size(135, 17);
+ this.checkBox2.TabIndex = 59;
+ this.checkBox2.Text = "Discord Rich Presence";
+ this.checkBox2.UseVisualStyleBackColor = true;
+ this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
+ //
+ // checkBox6
+ //
+ this.checkBox6.Location = new System.Drawing.Point(3, 240);
+ this.checkBox6.Name = "checkBox6";
+ this.checkBox6.Size = new System.Drawing.Size(131, 16);
+ this.checkBox6.TabIndex = 63;
+ this.checkBox6.Text = "ReShade FPS Display";
+ this.checkBox6.UseVisualStyleBackColor = true;
+ this.checkBox6.CheckedChanged += new System.EventHandler(this.checkBox6_CheckedChanged);
+ //
+ // checkBox7
+ //
+ this.checkBox7.AutoSize = true;
+ this.checkBox7.Location = new System.Drawing.Point(3, 223);
+ this.checkBox7.Name = "checkBox7";
+ this.checkBox7.Size = new System.Drawing.Size(164, 17);
+ this.checkBox7.TabIndex = 64;
+ this.checkBox7.Text = "ReShade Performance Mode";
+ this.checkBox7.UseVisualStyleBackColor = true;
+ this.checkBox7.CheckedChanged += new System.EventHandler(this.checkBox7_CheckedChanged);
+ //
+ // label22
+ //
+ this.label22.AutoSize = true;
+ this.label22.Location = new System.Drawing.Point(3, 137);
+ this.label22.Name = "label22";
+ this.label22.Size = new System.Drawing.Size(84, 13);
+ this.label22.TabIndex = 67;
+ this.label22.Text = "Graphics Quality";
+ //
+ // checkBox5
+ //
+ this.checkBox5.AutoSize = true;
+ this.checkBox5.Checked = true;
+ this.checkBox5.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.checkBox5.Location = new System.Drawing.Point(3, 206);
+ this.checkBox5.Name = "checkBox5";
+ this.checkBox5.Size = new System.Drawing.Size(107, 17);
+ this.checkBox5.TabIndex = 62;
+ this.checkBox5.Text = "Toggle ReShade";
+ this.checkBox5.UseVisualStyleBackColor = true;
+ this.checkBox5.CheckedChanged += new System.EventHandler(this.checkBox5_CheckedChanged);
+ //
+ // checkBox3
+ //
+ this.checkBox3.Location = new System.Drawing.Point(3, 19);
+ this.checkBox3.Name = "checkBox3";
+ this.checkBox3.Size = new System.Drawing.Size(77, 19);
+ this.checkBox3.TabIndex = 22;
+ this.checkBox3.Text = "Local Play";
+ this.checkBox3.UseVisualStyleBackColor = true;
+ this.checkBox3.CheckedChanged += new System.EventHandler(this.CheckBox3CheckedChanged);
+ //
+ // checkBox1
+ //
+ this.checkBox1.Checked = true;
+ this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.checkBox1.Location = new System.Drawing.Point(3, 37);
+ this.checkBox1.Name = "checkBox1";
+ this.checkBox1.Size = new System.Drawing.Size(124, 17);
+ this.checkBox1.TabIndex = 5;
+ this.checkBox1.Text = "Minimize on Launch";
+ this.checkBox1.UseCompatibleTextRendering = true;
+ this.checkBox1.UseVisualStyleBackColor = true;
+ this.checkBox1.CheckedChanged += new System.EventHandler(this.CheckBox1CheckedChanged);
+ //
+ // button9
+ //
+ this.button9.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button9.Location = new System.Drawing.Point(83, 79);
+ this.button9.Name = "button9";
+ this.button9.Size = new System.Drawing.Size(69, 20);
+ this.button9.TabIndex = 37;
+ this.button9.Text = "Reset Config";
+ this.button9.UseVisualStyleBackColor = true;
+ this.button9.Click += new System.EventHandler(this.Button9Click);
+ //
+ // button26
+ //
+ this.button26.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button26.Location = new System.Drawing.Point(3, 55);
+ this.button26.Name = "button26";
+ this.button26.Size = new System.Drawing.Size(94, 21);
+ this.button26.TabIndex = 57;
+ this.button26.Text = "Clear Asset Cache";
+ this.button26.UseVisualStyleBackColor = true;
+ this.button26.Click += new System.EventHandler(this.button26_Click);
+ //
+ // button5
+ //
+ this.button5.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button5.Location = new System.Drawing.Point(3, 79);
+ this.button5.Name = "button5";
+ this.button5.Size = new System.Drawing.Size(74, 20);
+ this.button5.TabIndex = 10;
+ this.button5.Text = "Save Config";
+ this.button5.UseVisualStyleBackColor = true;
+ this.button5.Click += new System.EventHandler(this.Button5Click);
+ //
+ // richTextBox3
+ //
+ this.richTextBox3.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.richTextBox3.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox3.Location = new System.Drawing.Point(209, 4);
+ this.richTextBox3.Name = "richTextBox3";
+ this.richTextBox3.ReadOnly = true;
+ this.richTextBox3.Size = new System.Drawing.Size(413, 219);
+ this.richTextBox3.TabIndex = 60;
+ this.richTextBox3.Text = "credits text";
+ //
+ // label10
+ //
+ this.label10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label10.Location = new System.Drawing.Point(209, 85);
+ this.label10.Name = "label10";
+ this.label10.Size = new System.Drawing.Size(413, 2);
+ this.label10.TabIndex = 53;
+ //
+ // label18
+ //
+ this.label18.Location = new System.Drawing.Point(336, 237);
+ this.label18.Name = "label18";
+ this.label18.Size = new System.Drawing.Size(155, 16);
+ this.label18.TabIndex = 58;
+ this.label18.Text = "qwertyuiopasdfghjklz";
+ this.label18.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // label8
+ //
+ this.label8.Location = new System.Drawing.Point(209, 237);
+ this.label8.Name = "label8";
+ this.label8.Size = new System.Drawing.Size(122, 16);
+ this.label8.TabIndex = 48;
+ this.label8.Text = "0.13333337";
+ this.label8.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ this.label8.Click += new System.EventHandler(this.label8_Click);
+ //
+ // label7
+ //
+ this.label7.Location = new System.Drawing.Point(491, 237);
+ this.label7.Name = "label7";
+ this.label7.Size = new System.Drawing.Size(128, 16);
+ this.label7.TabIndex = 54;
+ this.label7.Text = "PROJECT STARLIGHT";
+ this.label7.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // panel3
+ //
+ this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.panel3.Controls.Add(this.pictureBox2);
+ this.panel3.Controls.Add(this.textBox2);
+ this.panel3.Controls.Add(this.textBox5);
+ this.panel3.Controls.Add(this.button4);
+ this.panel3.Controls.Add(this.label16);
+ this.panel3.Controls.Add(this.label15);
+ this.panel3.Controls.Add(this.label12);
+ this.panel3.Controls.Add(this.label13);
+ this.panel3.Location = new System.Drawing.Point(1, 4);
+ this.panel3.Name = "panel3";
+ this.panel3.Size = new System.Drawing.Size(229, 69);
+ this.panel3.TabIndex = 62;
+ //
+ // panel4
+ //
+ this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.panel4.Controls.Add(this.button35);
+ this.panel4.Controls.Add(this.button34);
+ this.panel4.Controls.Add(this.button21);
+ this.panel4.Controls.Add(this.button8);
+ this.panel4.Controls.Add(this.button3);
+ this.panel4.Controls.Add(this.button25);
+ this.panel4.Location = new System.Drawing.Point(236, 41);
+ this.panel4.Name = "panel4";
+ this.panel4.Size = new System.Drawing.Size(501, 32);
+ this.panel4.TabIndex = 63;
+ //
+ // button35
+ //
+ this.button35.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button35.Location = new System.Drawing.Point(113, 3);
+ this.button35.Name = "button35";
+ this.button35.Size = new System.Drawing.Size(41, 20);
+ this.button35.TabIndex = 61;
+ this.button35.Text = "Studio";
+ this.button35.UseVisualStyleBackColor = true;
+ this.button35.Click += new System.EventHandler(this.button35_Click);
+ //
+ // MainForm
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.ClientSize = new System.Drawing.Size(739, 421);
+ this.Controls.Add(this.label25);
+ this.Controls.Add(this.label26);
+ this.Controls.Add(this.panel4);
+ this.Controls.Add(this.label27);
+ this.Controls.Add(this.panel3);
+ this.Controls.Add(this.panel2);
+ this.Controls.Add(this.panel1);
+ this.Controls.Add(this.label28);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "MainForm";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+ this.Text = "Novetus";
+ this.Closing += new System.ComponentModel.CancelEventHandler(this.MainFormClose);
+ this.Load += new System.EventHandler(this.MainFormLoad);
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
+ this.panel1.ResumeLayout(false);
+ this.panel2.ResumeLayout(false);
+ this.tabControl1.ResumeLayout(false);
+ this.tabPage1.ResumeLayout(false);
+ this.tabPage1.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
+ this.tabPage2.ResumeLayout(false);
+ this.tabPage2.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
+ this.tabPage3.ResumeLayout(false);
+ this.tabPage3.PerformLayout();
+ this.tabPage4.ResumeLayout(false);
+ this.tabPage4.PerformLayout();
+ this.tabPage6.ResumeLayout(false);
+ this.tabPage7.ResumeLayout(false);
+ this.tabPage8.ResumeLayout(false);
+ this.tabPage5.ResumeLayout(false);
+ this.panel5.ResumeLayout(false);
+ this.panel5.PerformLayout();
+ this.panel3.ResumeLayout(false);
+ this.panel3.PerformLayout();
+ this.panel4.ResumeLayout(false);
+ this.ResumeLayout(false);
+#else
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
+ this.button25 = new System.Windows.Forms.Button();
+ this.button21 = new System.Windows.Forms.Button();
+ this.textBox5 = new System.Windows.Forms.TextBox();
+ this.label15 = new System.Windows.Forms.Label();
+ this.label13 = new System.Windows.Forms.Label();
+ this.textBox2 = new System.Windows.Forms.TextBox();
+ this.button4 = new System.Windows.Forms.Button();
+ this.pictureBox2 = new System.Windows.Forms.PictureBox();
+ this.button8 = new System.Windows.Forms.Button();
+ this.button3 = new System.Windows.Forms.Button();
+ this.label25 = new System.Windows.Forms.Label();
+ this.label26 = new System.Windows.Forms.Label();
+ this.label27 = new System.Windows.Forms.Label();
+ this.label28 = new System.Windows.Forms.Label();
+ this.label11 = new System.Windows.Forms.Label();
+ this.label12 = new System.Windows.Forms.Label();
+ this.label16 = new System.Windows.Forms.Label();
+ this.button20 = new System.Windows.Forms.Button();
+ this.button27 = new System.Windows.Forms.Button();
+ this.panel1 = new System.Windows.Forms.Panel();
+ this.button33 = new System.Windows.Forms.Button();
+ this.button32 = new System.Windows.Forms.Button();
+ this.button31 = new System.Windows.Forms.Button();
+ this.button30 = new System.Windows.Forms.Button();
+ this.button29 = new System.Windows.Forms.Button();
+ this.button28 = new System.Windows.Forms.Button();
+ this.button34 = new System.Windows.Forms.Button();
+ this.panel2 = new System.Windows.Forms.Panel();
+ this.tabControl1 = new TabControlWithoutHeader(2);
+ this.tabPage1 = new System.Windows.Forms.TabPage();
+ this.label24 = new System.Windows.Forms.Label();
+ this.label23 = new System.Windows.Forms.Label();
+ this.label2 = new System.Windows.Forms.Label();
+ this.label1 = new System.Windows.Forms.Label();
+ this.button7 = new System.Windows.Forms.Button();
+ this.button11 = new System.Windows.Forms.Button();
+ this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
+ this.button19 = new System.Windows.Forms.Button();
+ this.button10 = new System.Windows.Forms.Button();
+ this.label4 = new System.Windows.Forms.Label();
+ this.button1 = new System.Windows.Forms.Button();
+ this.textBox1 = new System.Windows.Forms.TextBox();
+ this.tabPage2 = new System.Windows.Forms.TabPage();
+ this.label19 = new System.Windows.Forms.Label();
+ this.textBox3 = new System.Windows.Forms.TextBox();
+ this.label17 = new System.Windows.Forms.Label();
+ this.checkBox4 = new System.Windows.Forms.CheckBox();
+ this.button23 = new System.Windows.Forms.Button();
+ this.button22 = new System.Windows.Forms.Button();
+ this.numericUpDown3 = new System.Windows.Forms.NumericUpDown();
+ this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
+ this.label29 = new System.Windows.Forms.Label();
+ this.label35 = new System.Windows.Forms.Label();
+ this.button18 = new System.Windows.Forms.Button();
+ this.button2 = new System.Windows.Forms.Button();
+ this.tabPage3 = new System.Windows.Forms.TabPage();
+ this.textBox6 = new System.Windows.Forms.TextBox();
+ this.label30 = new System.Windows.Forms.Label();
+ this.listBox2 = new System.Windows.Forms.ListBox();
+ this.tabPage4 = new System.Windows.Forms.TabPage();
+ this.textBox4 = new System.Windows.Forms.TextBox();
+ this.button24 = new System.Windows.Forms.Button();
+ this.treeView1 = new System.Windows.Forms.TreeView();
+ this.button6 = new System.Windows.Forms.Button();
+ this.tabPage6 = new System.Windows.Forms.TabPage();
+ this.button17 = new System.Windows.Forms.Button();
+ this.button16 = new System.Windows.Forms.Button();
+ this.button15 = new System.Windows.Forms.Button();
+ this.button14 = new System.Windows.Forms.Button();
+ this.button13 = new System.Windows.Forms.Button();
+ this.button12 = new System.Windows.Forms.Button();
+ this.label38 = new System.Windows.Forms.Label();
+ this.label39 = new System.Windows.Forms.Label();
+ this.label37 = new System.Windows.Forms.Label();
+ this.label36 = new System.Windows.Forms.Label();
+ this.listBox4 = new System.Windows.Forms.ListBox();
+ this.listBox3 = new System.Windows.Forms.ListBox();
+ this.label21 = new System.Windows.Forms.Label();
+ this.label14 = new System.Windows.Forms.Label();
+ this.tabPage7 = new System.Windows.Forms.TabPage();
+ this.richTextBox1 = new System.Windows.Forms.RichTextBox();
+ this.tabPage8 = new System.Windows.Forms.TabPage();
+ this.richTextBox2 = new System.Windows.Forms.RichTextBox();
+ this.tabPage5 = new System.Windows.Forms.TabPage();
+ this.panel5 = new System.Windows.Forms.Panel();
+ this.label3 = new System.Windows.Forms.Label();
+ this.comboBox2 = new System.Windows.Forms.ComboBox();
+ this.label31 = new System.Windows.Forms.Label();
+ this.comboBox1 = new System.Windows.Forms.ComboBox();
+ this.checkBox2 = new System.Windows.Forms.CheckBox();
+ this.checkBox6 = new System.Windows.Forms.CheckBox();
+ this.checkBox7 = new System.Windows.Forms.CheckBox();
+ this.label22 = new System.Windows.Forms.Label();
+ this.checkBox5 = new System.Windows.Forms.CheckBox();
+ this.checkBox3 = new System.Windows.Forms.CheckBox();
+ this.checkBox1 = new System.Windows.Forms.CheckBox();
+ this.button9 = new System.Windows.Forms.Button();
+ this.button26 = new System.Windows.Forms.Button();
+ this.button5 = new System.Windows.Forms.Button();
+ this.richTextBox3 = new System.Windows.Forms.RichTextBox();
+ this.label10 = new System.Windows.Forms.Label();
+ this.label18 = new System.Windows.Forms.Label();
+ this.label8 = new System.Windows.Forms.Label();
+ this.label7 = new System.Windows.Forms.Label();
+ this.panel3 = new System.Windows.Forms.Panel();
+ this.panel4 = new System.Windows.Forms.Panel();
+ this.button35 = new System.Windows.Forms.Button();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
+ this.panel1.SuspendLayout();
+ this.panel2.SuspendLayout();
+ this.tabControl1.SuspendLayout();
+ this.tabPage1.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
+ this.tabPage2.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
+ this.tabPage3.SuspendLayout();
+ this.tabPage4.SuspendLayout();
+ this.tabPage6.SuspendLayout();
+ this.tabPage7.SuspendLayout();
+ this.tabPage8.SuspendLayout();
+ this.tabPage5.SuspendLayout();
+ this.panel5.SuspendLayout();
+ this.panel3.SuspendLayout();
+ this.panel4.SuspendLayout();
+ this.SuspendLayout();
+
+ //
+ // tabControl1
+ //
+ this.tabControl1.Controls.Add(this.tabPage1);
+ this.tabControl1.Controls.Add(this.tabPage2);
+ this.tabControl1.Controls.Add(this.tabPage3);
+ this.tabControl1.Controls.Add(this.tabPage4);
+ this.tabControl1.Controls.Add(this.tabPage6);
+ this.tabControl1.Controls.Add(this.tabPage7);
+ this.tabControl1.Controls.Add(this.tabPage8);
+ this.tabControl1.Controls.Add(this.tabPage5);
+ this.tabControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.tabControl1.Location = new System.Drawing.Point(2, 79);
+ this.tabControl1.Multiline = true;
+ this.tabControl1.Name = "tabControl1";
+ this.tabControl1.SelectedIndex = 0;
+ this.tabControl1.ShowToolTips = true;
+ this.tabControl1.Size = new System.Drawing.Size(413, 284);
+ this.tabControl1.TabIndex = 1;
+ this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
+ //
+ // tabPage1
+ //
+ this.tabPage1.Controls.Add(this.label2);
+ this.tabPage1.Controls.Add(this.label1);
+ this.tabPage1.Controls.Add(this.button7);
+ this.tabPage1.Controls.Add(this.label31);
+ this.tabPage1.Controls.Add(this.button11);
+ this.tabPage1.Controls.Add(this.numericUpDown1);
+ this.tabPage1.Controls.Add(this.button19);
+ this.tabPage1.Controls.Add(this.button10);
+ this.tabPage1.Controls.Add(this.label4);
+ this.tabPage1.Controls.Add(this.button1);
+ this.tabPage1.Controls.Add(this.label3);
+ this.tabPage1.Controls.Add(this.textBox1);
+ this.tabPage1.Location = new System.Drawing.Point(4, 22);
+ this.tabPage1.Name = "tabPage1";
+ this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage1.RightToLeft = System.Windows.Forms.RightToLeft.No;
+ this.tabPage1.Size = new System.Drawing.Size(405, 258);
+ this.tabPage1.TabIndex = 0;
+ this.tabPage1.Text = "JOIN";
+ this.tabPage1.ToolTipText = "Join a server via IP Address";
+ this.tabPage1.UseVisualStyleBackColor = true;
+ //
+ // label2
+ //
+ this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label2.Location = new System.Drawing.Point(6, 200);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(393, 2);
+ this.label2.TabIndex = 50;
+ //
+ // label1
+ //
+ this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label1.Location = new System.Drawing.Point(6, 91);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(393, 2);
+ this.label1.TabIndex = 49;
+ //
+ // button7
+ //
+ this.button7.Location = new System.Drawing.Point(333, 47);
+ this.button7.Name = "button7";
+ this.button7.Size = new System.Drawing.Size(54, 31);
+ this.button7.TabIndex = 48;
+ this.button7.Text = "RESET";
+ this.button7.UseVisualStyleBackColor = true;
+ this.button7.Click += new System.EventHandler(this.Button7Click);
+ //
+ // label31
+ //
+ this.label31.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.label31.Location = new System.Drawing.Point(267, 5);
+ this.label31.Name = "label31";
+ this.label31.Size = new System.Drawing.Size(120, 13);
+ this.label31.TabIndex = 47;
+ this.label31.Text = "Server Port";
+ this.label31.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // button11
+ //
+ this.button11.Location = new System.Drawing.Point(267, 47);
+ this.button11.Name = "button11";
+ this.button11.Size = new System.Drawing.Size(60, 31);
+ this.button11.TabIndex = 46;
+ this.button11.Text = "SAVE";
+ this.button11.UseVisualStyleBackColor = true;
+ this.button11.Click += new System.EventHandler(this.Button11Click);
+ //
+ // numericUpDown1
+ //
+ this.numericUpDown1.Location = new System.Drawing.Point(267, 21);
+ this.numericUpDown1.Maximum = new decimal(new int[] {
+ 65535,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown1.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown1.Name = "numericUpDown1";
+ this.numericUpDown1.Size = new System.Drawing.Size(120, 20);
+ this.numericUpDown1.TabIndex = 18;
+ this.numericUpDown1.Value = new decimal(new int[] {
+ 53640,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown1.ValueChanged += new System.EventHandler(this.NumericUpDown1ValueChanged);
+ //
+ // button19
+ //
+ this.button19.Location = new System.Drawing.Point(207, 212);
+ this.button19.Name = "button19";
+ this.button19.Size = new System.Drawing.Size(192, 40);
+ this.button19.TabIndex = 16;
+ this.button19.Text = "PLAY SOLO";
+ this.button19.UseVisualStyleBackColor = true;
+ this.button19.Click += new System.EventHandler(this.Button19Click);
+ //
+ // button10
+ //
+ this.button10.Location = new System.Drawing.Point(64, 47);
+ this.button10.Name = "button10";
+ this.button10.Size = new System.Drawing.Size(137, 31);
+ this.button10.TabIndex = 15;
+ this.button10.Text = "SAVE SERVER";
+ this.button10.UseVisualStyleBackColor = true;
+ this.button10.Click += new System.EventHandler(this.Button10Click);
+ //
+ // label4
+ //
+ this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label4.ForeColor = System.Drawing.Color.Red;
+ this.label4.Location = new System.Drawing.Point(6, 93);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(393, 107);
+ this.label4.TabIndex = 4;
+ this.label4.Text = resources.GetString("label4.Text");
+ this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // button1
+ //
+ this.button1.Location = new System.Drawing.Point(6, 212);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(195, 40);
+ this.button1.TabIndex = 3;
+ this.button1.Text = "JOIN SERVER";
+ this.button1.UseVisualStyleBackColor = true;
+ this.button1.Click += new System.EventHandler(this.Button1Click);
+ //
+ // label3
+ //
+ this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.label3.Location = new System.Drawing.Point(16, 5);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(241, 13);
+ this.label3.TabIndex = 1;
+ this.label3.Text = "Server IP Address";
+ this.label3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // textBox1
+ //
+ this.textBox1.Location = new System.Drawing.Point(41, 21);
+ this.textBox1.Name = "textBox1";
+ this.textBox1.Size = new System.Drawing.Size(189, 20);
+ this.textBox1.TabIndex = 0;
+ this.textBox1.Text = "localhost";
+ this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.textBox1.TextChanged += new System.EventHandler(this.TextBox1TextChanged);
+ //
+ // tabPage2
+ //
+ this.tabPage2.Controls.Add(this.label19);
+ this.tabPage2.Controls.Add(this.textBox3);
+ this.tabPage2.Controls.Add(this.label17);
+ this.tabPage2.Controls.Add(this.checkBox4);
+ this.tabPage2.Controls.Add(this.button23);
+ this.tabPage2.Controls.Add(this.button22);
+ this.tabPage2.Controls.Add(this.numericUpDown3);
+ this.tabPage2.Controls.Add(this.numericUpDown2);
+ this.tabPage2.Controls.Add(this.label29);
+ this.tabPage2.Controls.Add(this.label35);
+ this.tabPage2.Controls.Add(this.button18);
+ this.tabPage2.Controls.Add(this.button2);
+ this.tabPage2.Location = new System.Drawing.Point(4, 22);
+ this.tabPage2.Name = "tabPage2";
+ this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage2.Size = new System.Drawing.Size(405, 258);
+ this.tabPage2.TabIndex = 1;
+ this.tabPage2.Text = "HOST";
+ this.tabPage2.ToolTipText = "Start a server for other players to play";
+ this.tabPage2.UseVisualStyleBackColor = true;
+ //
+ // label19
+ //
+ this.label19.AutoSize = true;
+ this.label19.Location = new System.Drawing.Point(6, 5);
+ this.label19.Name = "label19";
+ this.label19.Size = new System.Drawing.Size(129, 13);
+ this.label19.TabIndex = 60;
+ this.label19.Text = "SERVER INFORMATION";
+ //
+ // textBox3
+ //
+ this.textBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.textBox3.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.textBox3.Location = new System.Drawing.Point(6, 21);
+ this.textBox3.Multiline = true;
+ this.textBox3.Name = "textBox3";
+ this.textBox3.ReadOnly = true;
+ this.textBox3.ScrollBars = System.Windows.Forms.ScrollBars.Both;
+ this.textBox3.Size = new System.Drawing.Size(393, 117);
+ this.textBox3.TabIndex = 59;
+ //
+ // label17
+ //
+ this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label17.ForeColor = System.Drawing.Color.Red;
+ this.label17.Location = new System.Drawing.Point(10, 141);
+ this.label17.Name = "label17";
+ this.label17.Size = new System.Drawing.Size(382, 19);
+ this.label17.TabIndex = 58;
+ this.label17.Text = "NOTE: The webserver port is static and it cannot be changed. It is 40735.";
+ this.label17.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // checkBox4
+ //
+ this.checkBox4.Location = new System.Drawing.Point(205, 187);
+ this.checkBox4.Name = "checkBox4";
+ this.checkBox4.Size = new System.Drawing.Size(104, 17);
+ this.checkBox4.TabIndex = 57;
+ this.checkBox4.Text = "Toggle UPnP";
+ this.checkBox4.UseVisualStyleBackColor = true;
+ this.checkBox4.CheckedChanged += new System.EventHandler(this.CheckBox4CheckedChanged);
+ this.checkBox4.Click += new System.EventHandler(this.CheckBox4Click);
+ //
+ // button23
+ //
+ this.button23.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button23.Location = new System.Drawing.Point(63, 184);
+ this.button23.Name = "button23";
+ this.button23.Size = new System.Drawing.Size(66, 25);
+ this.button23.TabIndex = 51;
+ this.button23.Text = "SAVE";
+ this.button23.UseVisualStyleBackColor = true;
+ this.button23.Click += new System.EventHandler(this.Button23Click);
+ //
+ // button22
+ //
+ this.button22.Location = new System.Drawing.Point(135, 184);
+ this.button22.Name = "button22";
+ this.button22.Size = new System.Drawing.Size(63, 25);
+ this.button22.TabIndex = 50;
+ this.button22.Text = "RESET";
+ this.button22.UseVisualStyleBackColor = true;
+ this.button22.Click += new System.EventHandler(this.Button22Click);
+ //
+ // numericUpDown3
+ //
+ this.numericUpDown3.Location = new System.Drawing.Point(270, 161);
+ this.numericUpDown3.Maximum = new decimal(new int[] {
+ 256,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown3.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown3.Name = "numericUpDown3";
+ this.numericUpDown3.Size = new System.Drawing.Size(49, 20);
+ this.numericUpDown3.TabIndex = 49;
+ this.numericUpDown3.Value = new decimal(new int[] {
+ 12,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown3.ValueChanged += new System.EventHandler(this.NumericUpDown3ValueChanged);
+ //
+ // numericUpDown2
+ //
+ this.numericUpDown2.Location = new System.Drawing.Point(134, 161);
+ this.numericUpDown2.Maximum = new decimal(new int[] {
+ 65535,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown2.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown2.Name = "numericUpDown2";
+ this.numericUpDown2.Size = new System.Drawing.Size(63, 20);
+ this.numericUpDown2.TabIndex = 48;
+ this.numericUpDown2.Value = new decimal(new int[] {
+ 53640,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown2.ValueChanged += new System.EventHandler(this.NumericUpDown2ValueChanged);
+ //
+ // label29
+ //
+ this.label29.Location = new System.Drawing.Point(205, 163);
+ this.label29.Name = "label29";
+ this.label29.Size = new System.Drawing.Size(60, 16);
+ this.label29.TabIndex = 46;
+ this.label29.Text = "Player Limit";
+ //
+ // label35
+ //
+ this.label35.Location = new System.Drawing.Point(63, 163);
+ this.label35.Name = "label35";
+ this.label35.Size = new System.Drawing.Size(65, 16);
+ this.label35.TabIndex = 44;
+ this.label35.Text = "Server Port";
+ this.label35.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // button18
+ //
+ this.button18.Location = new System.Drawing.Point(204, 215);
+ this.button18.Name = "button18";
+ this.button18.Size = new System.Drawing.Size(188, 36);
+ this.button18.TabIndex = 20;
+ this.button18.Text = "START SERVER WITH NO GRAPHICS";
+ this.button18.UseVisualStyleBackColor = true;
+ this.button18.Click += new System.EventHandler(this.Button18Click);
+ //
+ // button2
+ //
+ this.button2.Location = new System.Drawing.Point(10, 215);
+ this.button2.Name = "button2";
+ this.button2.Size = new System.Drawing.Size(188, 36);
+ this.button2.TabIndex = 2;
+ this.button2.Text = "START SERVER";
+ this.button2.UseVisualStyleBackColor = true;
+ this.button2.Click += new System.EventHandler(this.Button2Click);
+ //
+ // tabPage3
+ //
+ this.tabPage3.Controls.Add(this.textBox6);
+ this.tabPage3.Controls.Add(this.label30);
+ this.tabPage3.Controls.Add(this.listBox2);
+ this.tabPage3.Location = new System.Drawing.Point(4, 22);
+ this.tabPage3.Name = "tabPage3";
+ this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage3.Size = new System.Drawing.Size(405, 258);
+ this.tabPage3.TabIndex = 4;
+ this.tabPage3.Text = "CLIENTS";
+ this.tabPage3.ToolTipText = "Select a ROBLOX Client to load your game";
+ this.tabPage3.UseVisualStyleBackColor = true;
+ //
+ // textBox6
+ //
+ this.textBox6.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.textBox6.Location = new System.Drawing.Point(6, 179);
+ this.textBox6.Multiline = true;
+ this.textBox6.Name = "textBox6";
+ this.textBox6.ReadOnly = true;
+ this.textBox6.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
+ this.textBox6.Size = new System.Drawing.Size(393, 73);
+ this.textBox6.TabIndex = 4;
+ this.textBox6.Text = "textBox6";
+ //
+ // label30
+ //
+ this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label30.ForeColor = System.Drawing.Color.Red;
+ this.label30.Location = new System.Drawing.Point(6, 118);
+ this.label30.Name = "label30";
+ this.label30.Size = new System.Drawing.Size(393, 58);
+ this.label30.TabIndex = 3;
+ this.label30.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ this.label30.Visible = false;
+ //
+ // listBox2
+ //
+ this.listBox2.FormattingEnabled = true;
+ this.listBox2.Location = new System.Drawing.Point(6, 7);
+ this.listBox2.Name = "listBox2";
+ this.listBox2.Size = new System.Drawing.Size(393, 108);
+ this.listBox2.TabIndex = 2;
+ this.listBox2.SelectedIndexChanged += new System.EventHandler(this.ListBox2SelectedIndexChanged);
+ //
+ // tabPage4
+ //
+ this.tabPage4.Controls.Add(this.textBox4);
+ this.tabPage4.Controls.Add(this.button24);
+ this.tabPage4.Controls.Add(this.treeView1);
+ this.tabPage4.Controls.Add(this.button6);
+ this.tabPage4.Location = new System.Drawing.Point(4, 22);
+ this.tabPage4.Name = "tabPage4";
+ this.tabPage4.Size = new System.Drawing.Size(405, 258);
+ this.tabPage4.TabIndex = 10;
+ this.tabPage4.Text = "MAPS";
+ this.tabPage4.UseVisualStyleBackColor = true;
+ //
+ // textBox4
+ //
+ this.textBox4.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.textBox4.Location = new System.Drawing.Point(7, 143);
+ this.textBox4.Multiline = true;
+ this.textBox4.Name = "textBox4";
+ this.textBox4.ReadOnly = true;
+ this.textBox4.ScrollBars = System.Windows.Forms.ScrollBars.Both;
+ this.textBox4.Size = new System.Drawing.Size(392, 110);
+ this.textBox4.TabIndex = 67;
+ //
+ // button24
+ //
+ this.button24.Location = new System.Drawing.Point(7, 3);
+ this.button24.Name = "button24";
+ this.button24.Size = new System.Drawing.Size(188, 23);
+ this.button24.TabIndex = 59;
+ this.button24.Text = "Refresh List";
+ this.button24.UseVisualStyleBackColor = true;
+ this.button24.Click += new System.EventHandler(this.Button24Click);
+ //
+ // treeView1
+ //
+ this.treeView1.HideSelection = false;
+ this.treeView1.Location = new System.Drawing.Point(7, 29);
+ this.treeView1.Name = "treeView1";
+ this.treeView1.Size = new System.Drawing.Size(392, 108);
+ this.treeView1.TabIndex = 54;
+ this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeView1AfterSelect);
+ //
+ // button6
+ //
+ this.button6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button6.Location = new System.Drawing.Point(211, 3);
+ this.button6.Name = "button6";
+ this.button6.Size = new System.Drawing.Size(188, 23);
+ this.button6.TabIndex = 56;
+ this.button6.Text = "Open Maps Folder";
+ this.button6.UseVisualStyleBackColor = true;
+ this.button6.Click += new System.EventHandler(this.Button6Click);
+ //
+ // tabPage6
+ //
+ this.tabPage6.Controls.Add(this.button17);
+ this.tabPage6.Controls.Add(this.button16);
+ this.tabPage6.Controls.Add(this.button15);
+ this.tabPage6.Controls.Add(this.button14);
+ this.tabPage6.Controls.Add(this.button13);
+ this.tabPage6.Controls.Add(this.button12);
+ this.tabPage6.Controls.Add(this.label38);
+ this.tabPage6.Controls.Add(this.label39);
+ this.tabPage6.Controls.Add(this.label37);
+ this.tabPage6.Controls.Add(this.label36);
+ this.tabPage6.Controls.Add(this.listBox4);
+ this.tabPage6.Controls.Add(this.listBox3);
+ this.tabPage6.Controls.Add(this.label21);
+ this.tabPage6.Controls.Add(this.label14);
+ this.tabPage6.Location = new System.Drawing.Point(4, 22);
+ this.tabPage6.Name = "tabPage6";
+ this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage6.Size = new System.Drawing.Size(405, 258);
+ this.tabPage6.TabIndex = 6;
+ this.tabPage6.Text = "SAVED";
+ this.tabPage6.ToolTipText = "Lists all your saved servers and ports";
+ this.tabPage6.UseVisualStyleBackColor = true;
+ //
+ // button17
+ //
+ this.button17.Location = new System.Drawing.Point(213, 186);
+ this.button17.Name = "button17";
+ this.button17.Size = new System.Drawing.Size(54, 23);
+ this.button17.TabIndex = 13;
+ this.button17.Text = "Add";
+ this.button17.UseVisualStyleBackColor = true;
+ this.button17.Click += new System.EventHandler(this.Button17Click);
+ //
+ // button16
+ //
+ this.button16.Location = new System.Drawing.Point(6, 186);
+ this.button16.Name = "button16";
+ this.button16.Size = new System.Drawing.Size(60, 23);
+ this.button16.TabIndex = 12;
+ this.button16.Text = "Add";
+ this.button16.UseVisualStyleBackColor = true;
+ this.button16.Click += new System.EventHandler(this.Button16Click);
+ //
+ // button15
+ //
+ this.button15.Location = new System.Drawing.Point(339, 186);
+ this.button15.Name = "button15";
+ this.button15.Size = new System.Drawing.Size(60, 23);
+ this.button15.TabIndex = 11;
+ this.button15.Text = "Reset";
+ this.button15.UseVisualStyleBackColor = true;
+ this.button15.Click += new System.EventHandler(this.Button15Click);
+ //
+ // button14
+ //
+ this.button14.Location = new System.Drawing.Point(137, 186);
+ this.button14.Name = "button14";
+ this.button14.Size = new System.Drawing.Size(55, 23);
+ this.button14.TabIndex = 10;
+ this.button14.Text = "Reset";
+ this.button14.UseVisualStyleBackColor = true;
+ this.button14.Click += new System.EventHandler(this.Button14Click);
+ //
+ // button13
+ //
+ this.button13.Location = new System.Drawing.Point(273, 186);
+ this.button13.Name = "button13";
+ this.button13.Size = new System.Drawing.Size(60, 23);
+ this.button13.TabIndex = 9;
+ this.button13.Text = "Remove";
+ this.button13.UseVisualStyleBackColor = true;
+ this.button13.Click += new System.EventHandler(this.Button13Click);
+ //
+ // button12
+ //
+ this.button12.Location = new System.Drawing.Point(69, 186);
+ this.button12.Name = "button12";
+ this.button12.Size = new System.Drawing.Size(62, 23);
+ this.button12.TabIndex = 8;
+ this.button12.Text = "Remove";
+ this.button12.UseVisualStyleBackColor = true;
+ this.button12.Click += new System.EventHandler(this.Button12Click);
+ //
+ // label38
+ //
+ this.label38.Location = new System.Drawing.Point(213, 226);
+ this.label38.Name = "label38";
+ this.label38.Size = new System.Drawing.Size(120, 20);
+ this.label38.TabIndex = 7;
+ //
+ // label39
+ //
+ this.label39.Location = new System.Drawing.Point(213, 212);
+ this.label39.Name = "label39";
+ this.label39.Size = new System.Drawing.Size(149, 12);
+ this.label39.TabIndex = 6;
+ this.label39.Text = "CURRENT SERVER PORT:";
+ //
+ // label37
+ //
+ this.label37.Location = new System.Drawing.Point(6, 226);
+ this.label37.Name = "label37";
+ this.label37.Size = new System.Drawing.Size(120, 20);
+ this.label37.TabIndex = 5;
+ //
+ // label36
+ //
+ this.label36.Location = new System.Drawing.Point(6, 212);
+ this.label36.Name = "label36";
+ this.label36.Size = new System.Drawing.Size(136, 12);
+ this.label36.TabIndex = 4;
+ this.label36.Text = "CURRENT SERVER IP:";
+ //
+ // listBox4
+ //
+ this.listBox4.FormattingEnabled = true;
+ this.listBox4.Location = new System.Drawing.Point(213, 21);
+ this.listBox4.Name = "listBox4";
+ this.listBox4.Size = new System.Drawing.Size(186, 160);
+ this.listBox4.TabIndex = 3;
+ this.listBox4.SelectedIndexChanged += new System.EventHandler(this.ListBox4SelectedIndexChanged);
+ //
+ // listBox3
+ //
+ this.listBox3.FormattingEnabled = true;
+ this.listBox3.Location = new System.Drawing.Point(6, 21);
+ this.listBox3.Name = "listBox3";
+ this.listBox3.Size = new System.Drawing.Size(186, 160);
+ this.listBox3.TabIndex = 2;
+ this.listBox3.SelectedIndexChanged += new System.EventHandler(this.ListBox3SelectedIndexChanged);
+ //
+ // label21
+ //
+ this.label21.Location = new System.Drawing.Point(282, 3);
+ this.label21.Name = "label21";
+ this.label21.Size = new System.Drawing.Size(59, 15);
+ this.label21.TabIndex = 1;
+ this.label21.Text = "PORTS";
+ //
+ // label14
+ //
+ this.label14.Location = new System.Drawing.Point(67, 3);
+ this.label14.Name = "label14";
+ this.label14.Size = new System.Drawing.Size(59, 15);
+ this.label14.TabIndex = 0;
+ this.label14.Text = "SERVERS";
+ //
+ // tabPage7
+ //
+ this.tabPage7.BackColor = System.Drawing.SystemColors.ControlText;
+ this.tabPage7.Controls.Add(this.richTextBox1);
+ this.tabPage7.Location = new System.Drawing.Point(4, 22);
+ this.tabPage7.Name = "tabPage7";
+ this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage7.Size = new System.Drawing.Size(405, 258);
+ this.tabPage7.TabIndex = 7;
+ this.tabPage7.Text = "CMD";
+ //
+ // richTextBox1
+ //
+ this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.richTextBox1.BackColor = System.Drawing.SystemColors.ControlText;
+ this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox1.ForeColor = System.Drawing.Color.White;
+ this.richTextBox1.Location = new System.Drawing.Point(3, 3);
+ this.richTextBox1.Name = "richTextBox1";
+ this.richTextBox1.Size = new System.Drawing.Size(399, 255);
+ this.richTextBox1.TabIndex = 2;
+ this.richTextBox1.Text = "";
+ this.richTextBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.richTextBox1_KeyDown);
+ //
+ // tabPage8
+ //
+ this.tabPage8.Controls.Add(this.richTextBox2);
+ this.tabPage8.Location = new System.Drawing.Point(4, 22);
+ this.tabPage8.Name = "tabPage8";
+ this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage8.Size = new System.Drawing.Size(405, 258);
+ this.tabPage8.TabIndex = 8;
+ this.tabPage8.Text = "UPDATES";
+ this.tabPage8.UseVisualStyleBackColor = true;
+ //
+ // richTextBox2
+ //
+ this.richTextBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.richTextBox2.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.richTextBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox2.Location = new System.Drawing.Point(3, 3);
+ this.richTextBox2.Name = "richTextBox2";
+ this.richTextBox2.ReadOnly = true;
+ this.richTextBox2.Size = new System.Drawing.Size(399, 252);
+ this.richTextBox2.TabIndex = 2;
+ this.richTextBox2.Text = "";
+ //
+ // tabPage5
+ //
+ this.tabPage5.Controls.Add(this.checkBox2);
+ this.tabPage5.Controls.Add(this.label18);
+ this.tabPage5.Controls.Add(this.button26);
+ this.tabPage5.Controls.Add(this.label7);
+ this.tabPage5.Controls.Add(this.label10);
+ this.tabPage5.Controls.Add(this.label8);
+ this.tabPage5.Controls.Add(this.button9);
+ this.tabPage5.Controls.Add(this.checkBox3);
+ this.tabPage5.Controls.Add(this.checkBox1);
+ this.tabPage5.Controls.Add(this.button5);
+ this.tabPage5.Controls.Add(this.richTextBox3);
+ this.tabPage5.Location = new System.Drawing.Point(4, 22);
+ this.tabPage5.Name = "tabPage5";
+ this.tabPage5.Size = new System.Drawing.Size(405, 258);
+ this.tabPage5.TabIndex = 9;
+ this.tabPage5.Text = "SETTINGS";
+ this.tabPage5.UseVisualStyleBackColor = true;
+ //
+ // checkBox2
+ //
+ this.checkBox2.AutoSize = true;
+ this.checkBox2.Checked = true;
+ this.checkBox2.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.checkBox2.Location = new System.Drawing.Point(176, 8);
+ this.checkBox2.Name = "checkBox2";
+ this.checkBox2.Size = new System.Drawing.Size(135, 17);
+ this.checkBox2.TabIndex = 59;
+ this.checkBox2.Text = "Discord Rich Presence";
+ this.checkBox2.UseVisualStyleBackColor = true;
+ this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
+ //
+ // label18
+ //
+ this.label18.Location = new System.Drawing.Point(113, 237);
+ this.label18.Name = "label18";
+ this.label18.Size = new System.Drawing.Size(155, 16);
+ this.label18.TabIndex = 58;
+ this.label18.Text = "qwertyuiopasdfghjklz";
+ this.label18.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // button26
+ //
+ this.button26.Location = new System.Drawing.Point(176, 29);
+ this.button26.Name = "button26";
+ this.button26.Size = new System.Drawing.Size(77, 21);
+ this.button26.TabIndex = 57;
+ this.button26.Text = "Clear Cache";
+ this.button26.UseVisualStyleBackColor = true;
+ this.button26.Click += new System.EventHandler(this.button26_Click);
+ //
+ // label7
+ //
+ this.label7.Location = new System.Drawing.Point(274, 237);
+ this.label7.Name = "label7";
+ this.label7.Size = new System.Drawing.Size(121, 16);
+ this.label7.TabIndex = 54;
+ this.label7.Text = "PROJECT STARLIGHT";
+ //
+ // label10
+ //
+ this.label10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label10.Location = new System.Drawing.Point(6, 60);
+ this.label10.Name = "label10";
+ this.label10.Size = new System.Drawing.Size(389, 2);
+ this.label10.TabIndex = 53;
+ //
+ // label8
+ //
+ this.label8.Location = new System.Drawing.Point(8, 237);
+ this.label8.Name = "label8";
+ this.label8.Size = new System.Drawing.Size(99, 16);
+ this.label8.TabIndex = 48;
+ this.label8.Text = "0.13333337";
+ this.label8.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // label9
+ //
+ this.richTextBox3.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.richTextBox3.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.richTextBox3.Location = new System.Drawing.Point(6, 70);
+ this.richTextBox3.Name = "richTextBox3";
+ this.richTextBox3.Size = new System.Drawing.Size(389, 155);
+ this.richTextBox3.ReadOnly = true;
+ this.richTextBox3.TabIndex = 60;
+ this.richTextBox3.Text = "credits text";
+ //
+ // button9
+ //
+ this.button9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button9.Location = new System.Drawing.Point(91, 4);
+ this.button9.Name = "button9";
+ this.button9.Size = new System.Drawing.Size(69, 46);
+ this.button9.TabIndex = 37;
+ this.button9.Text = "Reset CFG";
+ this.button9.UseVisualStyleBackColor = true;
+ this.button9.Click += new System.EventHandler(this.Button9Click);
+ //
+ // checkBox3
+ //
+ this.checkBox3.Location = new System.Drawing.Point(317, 7);
+ this.checkBox3.Name = "checkBox3";
+ this.checkBox3.Size = new System.Drawing.Size(77, 19);
+ this.checkBox3.TabIndex = 22;
+ this.checkBox3.Text = "Local Play";
+ this.checkBox3.UseVisualStyleBackColor = true;
+ this.checkBox3.CheckedChanged += new System.EventHandler(this.CheckBox3CheckedChanged);
+ //
+ // checkBox1
+ //
+ this.checkBox1.Checked = true;
+ this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.checkBox1.Location = new System.Drawing.Point(270, 32);
+ this.checkBox1.Name = "checkBox1";
+ this.checkBox1.Size = new System.Drawing.Size(124, 17);
+ this.checkBox1.TabIndex = 5;
+ this.checkBox1.Text = "Minimize on Launch";
+ this.checkBox1.UseCompatibleTextRendering = true;
+ this.checkBox1.UseVisualStyleBackColor = true;
+ this.checkBox1.CheckedChanged += new System.EventHandler(this.CheckBox1CheckedChanged);
+ //
+ // button5
+ //
+ this.button5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button5.Location = new System.Drawing.Point(14, 4);
+ this.button5.Name = "button5";
+ this.button5.Size = new System.Drawing.Size(69, 46);
+ this.button5.TabIndex = 10;
+ this.button5.Text = "Save CFG";
+ this.button5.UseVisualStyleBackColor = true;
+ this.button5.Click += new System.EventHandler(this.Button5Click);
+ //
+ // button25
+ //
+ this.button25.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button25.Location = new System.Drawing.Point(315, 31);
+ this.button25.Name = "button25";
+ this.button25.Size = new System.Drawing.Size(63, 20);
+ this.button25.TabIndex = 56;
+ this.button25.Text = "Install Mod";
+ this.button25.UseVisualStyleBackColor = true;
+ this.button25.Click += new System.EventHandler(this.button25_Click);
+ //
+ // button21
+ //
+ this.button21.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button21.Location = new System.Drawing.Point(380, 31);
+ this.button21.Name = "button21";
+ this.button21.Size = new System.Drawing.Size(35, 20);
+ this.button21.TabIndex = 44;
+ this.button21.Text = "UA";
+ this.button21.UseVisualStyleBackColor = true;
+ this.button21.Click += new System.EventHandler(this.Button21Click);
+ //
+ // textBox5
+ //
+ this.textBox5.Location = new System.Drawing.Point(95, 53);
+ this.textBox5.Multiline = true;
+ this.textBox5.Name = "textBox5";
+ this.textBox5.Size = new System.Drawing.Size(71, 18);
+ this.textBox5.TabIndex = 20;
+ this.textBox5.Text = "0";
+ this.textBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.textBox5.TextChanged += new System.EventHandler(this.TextBox5TextChanged);
+ //
+ // label15
+ //
+ this.label15.Location = new System.Drawing.Point(55, 34);
+ this.label15.Name = "label15";
+ this.label15.Size = new System.Drawing.Size(40, 16);
+ this.label15.TabIndex = 12;
+ this.label15.Text = "Name:";
+ //
+ // label13
+ //
+ this.label13.Location = new System.Drawing.Point(55, 55);
+ this.label13.Name = "label13";
+ this.label13.Size = new System.Drawing.Size(34, 13);
+ this.label13.TabIndex = 7;
+ this.label13.Text = "ID:";
+ //
+ // textBox2
+ //
+ this.textBox2.Location = new System.Drawing.Point(95, 31);
+ this.textBox2.Name = "textBox2";
+ this.textBox2.Size = new System.Drawing.Size(121, 20);
+ this.textBox2.TabIndex = 11;
+ this.textBox2.Text = "Player";
+ this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.textBox2.TextChanged += new System.EventHandler(this.TextBox2TextChanged);
+ //
+ // button4
+ //
+ this.button4.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button4.Location = new System.Drawing.Point(169, 52);
+ this.button4.Name = "button4";
+ this.button4.Size = new System.Drawing.Size(48, 20);
+ this.button4.TabIndex = 9;
+ this.button4.Text = "Regen";
+ this.button4.UseVisualStyleBackColor = true;
+ this.button4.Click += new System.EventHandler(this.Button4Click);
+ //
+ // pictureBox2
+ //
+ this.pictureBox2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox2.BackgroundImage")));
+ this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.pictureBox2.Location = new System.Drawing.Point(6, 12);
+ this.pictureBox2.Name = "pictureBox2";
+ this.pictureBox2.Size = new System.Drawing.Size(43, 41);
+ this.pictureBox2.TabIndex = 7;
+ this.pictureBox2.TabStop = false;
+ //
+ // button8
+ //
+ this.button8.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button8.Location = new System.Drawing.Point(223, 31);
+ this.button8.Name = "button8";
+ this.button8.Size = new System.Drawing.Size(47, 20);
+ this.button8.TabIndex = 35;
+ this.button8.Text = "Avatar";
+ this.button8.UseVisualStyleBackColor = true;
+ this.button8.Click += new System.EventHandler(this.Button8Click);
+ //
+ // button3
+ //
+ this.button3.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button3.Location = new System.Drawing.Point(271, 31);
+ this.button3.Name = "button3";
+ this.button3.Size = new System.Drawing.Size(43, 20);
+ this.button3.TabIndex = 6;
+ this.button3.Text = "Studio";
+ this.button3.UseVisualStyleBackColor = true;
+ this.button3.Click += new System.EventHandler(this.Button3Click);
+ //
+ // label25
+ //
+ this.label25.Location = new System.Drawing.Point(55, 4);
+ this.label25.Name = "label25";
+ this.label25.Size = new System.Drawing.Size(109, 14);
+ this.label25.TabIndex = 16;
+ this.label25.Text = "SELECTED CLIENT:";
+ //
+ // label26
+ //
+ this.label26.Location = new System.Drawing.Point(160, 4);
+ this.label26.Name = "label26";
+ this.label26.Size = new System.Drawing.Size(245, 13);
+ this.label26.TabIndex = 17;
+ this.label26.Text = "2009E";
+ //
+ // label27
+ //
+ this.label27.Location = new System.Drawing.Point(55, 18);
+ this.label27.Name = "label27";
+ this.label27.Size = new System.Drawing.Size(95, 12);
+ this.label27.TabIndex = 18;
+ this.label27.Text = "SELECTED MAP:";
+ //
+ // label28
+ //
+ this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label28.Location = new System.Drawing.Point(145, 18);
+ this.label28.Name = "label28";
+ this.label28.Size = new System.Drawing.Size(260, 12);
+ this.label28.TabIndex = 19;
+ this.label28.Text = "Baseplate.rbxl";
+ //
+ // label11
+ //
+ this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label11.Location = new System.Drawing.Point(4, 51);
+ this.label11.Name = "label11";
+ this.label11.Size = new System.Drawing.Size(47, 25);
+ this.label11.TabIndex = 50;
+ this.label11.Text = "v1.0";
+ this.label11.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // label12
+ //
+ this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label12.Location = new System.Drawing.Point(223, 51);
+ this.label12.Name = "label12";
+ this.label12.Size = new System.Drawing.Size(192, 21);
+ this.label12.TabIndex = 0;
+ this.label12.Text = "Novetus!";
+ this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // label16
+ //
+ this.label16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label16.Location = new System.Drawing.Point(54, 6);
+ this.label16.Name = "label16";
+ this.label16.Size = new System.Drawing.Size(2, 65);
+ this.label16.TabIndex = 51;
+ //
+ // MainForm
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.ClientSize = new System.Drawing.Size(417, 366);
+ this.Controls.Add(this.label16);
+ this.Controls.Add(this.label12);
+ this.Controls.Add(this.label28);
+ this.Controls.Add(this.button25);
+ this.Controls.Add(this.label11);
+ this.Controls.Add(this.pictureBox2);
+ this.Controls.Add(this.button3);
+ this.Controls.Add(this.button8);
+ this.Controls.Add(this.button21);
+ this.Controls.Add(this.label13);
+ this.Controls.Add(this.label15);
+ this.Controls.Add(this.button4);
+ this.Controls.Add(this.textBox5);
+ this.Controls.Add(this.label27);
+ this.Controls.Add(this.label26);
+ this.Controls.Add(this.label25);
+ this.Controls.Add(this.textBox2);
+ this.Controls.Add(this.tabControl1);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "MainForm";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+ this.Text = "Novetus";
+ this.Closing += new System.ComponentModel.CancelEventHandler(this.MainFormClose);
+ this.Load += new System.EventHandler(this.MainFormLoad);
+ this.tabControl1.ResumeLayout(false);
+ this.tabPage1.ResumeLayout(false);
+ this.tabPage1.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
+ this.tabPage2.ResumeLayout(false);
+ this.tabPage2.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
+ this.tabPage3.ResumeLayout(false);
+ this.tabPage3.PerformLayout();
+ this.tabPage4.ResumeLayout(false);
+ this.tabPage4.PerformLayout();
+ this.tabPage6.ResumeLayout(false);
+ this.tabPage7.ResumeLayout(false);
+ this.tabPage8.ResumeLayout(false);
+ this.tabPage5.ResumeLayout(false);
+ this.tabPage5.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
+ this.ResumeLayout(false);
+ this.PerformLayout();
+#endif
+ }
+#else
+ private void InitializeComponent(int layout = 1)
+ {
+ if (layout == 1)
+ {
+ Layout12();
}
else if (layout == 2)
{
+ Layout11();
}
}
+#endif
+
+ private void Layout12()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
+ this.button25 = new System.Windows.Forms.Button();
+ this.button21 = new System.Windows.Forms.Button();
+ this.textBox5 = new System.Windows.Forms.TextBox();
+ this.label15 = new System.Windows.Forms.Label();
+ this.label13 = new System.Windows.Forms.Label();
+ this.textBox2 = new System.Windows.Forms.TextBox();
+ this.button4 = new System.Windows.Forms.Button();
+ this.pictureBox2 = new System.Windows.Forms.PictureBox();
+ this.button8 = new System.Windows.Forms.Button();
+ this.button3 = new System.Windows.Forms.Button();
+ this.label25 = new System.Windows.Forms.Label();
+ this.label26 = new System.Windows.Forms.Label();
+ this.label27 = new System.Windows.Forms.Label();
+ this.label28 = new System.Windows.Forms.Label();
+ this.label11 = new System.Windows.Forms.Label();
+ this.label12 = new System.Windows.Forms.Label();
+ this.label16 = new System.Windows.Forms.Label();
+ this.button20 = new System.Windows.Forms.Button();
+ this.button27 = new System.Windows.Forms.Button();
+ this.panel1 = new System.Windows.Forms.Panel();
+ this.button33 = new System.Windows.Forms.Button();
+ this.button32 = new System.Windows.Forms.Button();
+ this.button31 = new System.Windows.Forms.Button();
+ this.button30 = new System.Windows.Forms.Button();
+ this.button29 = new System.Windows.Forms.Button();
+ this.button28 = new System.Windows.Forms.Button();
+ this.button34 = new System.Windows.Forms.Button();
+ this.panel2 = new System.Windows.Forms.Panel();
+ this.tabControl1 = new TabControlWithoutHeader(1);
+ this.tabPage1 = new System.Windows.Forms.TabPage();
+ this.label24 = new System.Windows.Forms.Label();
+ this.label23 = new System.Windows.Forms.Label();
+ this.label2 = new System.Windows.Forms.Label();
+ this.label1 = new System.Windows.Forms.Label();
+ this.button7 = new System.Windows.Forms.Button();
+ this.button11 = new System.Windows.Forms.Button();
+ this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
+ this.button19 = new System.Windows.Forms.Button();
+ this.button10 = new System.Windows.Forms.Button();
+ this.label4 = new System.Windows.Forms.Label();
+ this.button1 = new System.Windows.Forms.Button();
+ this.textBox1 = new System.Windows.Forms.TextBox();
+ this.tabPage2 = new System.Windows.Forms.TabPage();
+ this.label19 = new System.Windows.Forms.Label();
+ this.textBox3 = new System.Windows.Forms.TextBox();
+ this.label17 = new System.Windows.Forms.Label();
+ this.checkBox4 = new System.Windows.Forms.CheckBox();
+ this.button23 = new System.Windows.Forms.Button();
+ this.button22 = new System.Windows.Forms.Button();
+ this.numericUpDown3 = new System.Windows.Forms.NumericUpDown();
+ this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
+ this.label29 = new System.Windows.Forms.Label();
+ this.label35 = new System.Windows.Forms.Label();
+ this.button18 = new System.Windows.Forms.Button();
+ this.button2 = new System.Windows.Forms.Button();
+ this.tabPage3 = new System.Windows.Forms.TabPage();
+ this.textBox6 = new System.Windows.Forms.TextBox();
+ this.label30 = new System.Windows.Forms.Label();
+ this.listBox2 = new System.Windows.Forms.ListBox();
+ this.tabPage4 = new System.Windows.Forms.TabPage();
+ this.textBox4 = new System.Windows.Forms.TextBox();
+ this.button24 = new System.Windows.Forms.Button();
+ this.treeView1 = new System.Windows.Forms.TreeView();
+ this.button6 = new System.Windows.Forms.Button();
+ this.tabPage6 = new System.Windows.Forms.TabPage();
+ this.button17 = new System.Windows.Forms.Button();
+ this.button16 = new System.Windows.Forms.Button();
+ this.button15 = new System.Windows.Forms.Button();
+ this.button14 = new System.Windows.Forms.Button();
+ this.button13 = new System.Windows.Forms.Button();
+ this.button12 = new System.Windows.Forms.Button();
+ this.label38 = new System.Windows.Forms.Label();
+ this.label39 = new System.Windows.Forms.Label();
+ this.label37 = new System.Windows.Forms.Label();
+ this.label36 = new System.Windows.Forms.Label();
+ this.listBox4 = new System.Windows.Forms.ListBox();
+ this.listBox3 = new System.Windows.Forms.ListBox();
+ this.label21 = new System.Windows.Forms.Label();
+ this.label14 = new System.Windows.Forms.Label();
+ this.tabPage7 = new System.Windows.Forms.TabPage();
+ this.richTextBox1 = new System.Windows.Forms.RichTextBox();
+ this.tabPage8 = new System.Windows.Forms.TabPage();
+ this.richTextBox2 = new System.Windows.Forms.RichTextBox();
+ this.tabPage5 = new System.Windows.Forms.TabPage();
+ this.panel5 = new System.Windows.Forms.Panel();
+ this.label3 = new System.Windows.Forms.Label();
+ this.comboBox2 = new System.Windows.Forms.ComboBox();
+ this.label31 = new System.Windows.Forms.Label();
+ this.comboBox1 = new System.Windows.Forms.ComboBox();
+ this.checkBox2 = new System.Windows.Forms.CheckBox();
+ this.checkBox6 = new System.Windows.Forms.CheckBox();
+ this.checkBox7 = new System.Windows.Forms.CheckBox();
+ this.label22 = new System.Windows.Forms.Label();
+ this.checkBox5 = new System.Windows.Forms.CheckBox();
+ this.checkBox3 = new System.Windows.Forms.CheckBox();
+ this.checkBox1 = new System.Windows.Forms.CheckBox();
+ this.button9 = new System.Windows.Forms.Button();
+ this.button26 = new System.Windows.Forms.Button();
+ this.button5 = new System.Windows.Forms.Button();
+ this.richTextBox3 = new System.Windows.Forms.RichTextBox();
+ this.label10 = new System.Windows.Forms.Label();
+ this.label18 = new System.Windows.Forms.Label();
+ this.label8 = new System.Windows.Forms.Label();
+ this.label7 = new System.Windows.Forms.Label();
+ this.panel3 = new System.Windows.Forms.Panel();
+ this.panel4 = new System.Windows.Forms.Panel();
+ this.button35 = new System.Windows.Forms.Button();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
+ this.panel1.SuspendLayout();
+ this.panel2.SuspendLayout();
+ this.tabControl1.SuspendLayout();
+ this.tabPage1.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
+ this.tabPage2.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
+ this.tabPage3.SuspendLayout();
+ this.tabPage4.SuspendLayout();
+ this.tabPage6.SuspendLayout();
+ this.tabPage7.SuspendLayout();
+ this.tabPage8.SuspendLayout();
+ this.tabPage5.SuspendLayout();
+ this.panel5.SuspendLayout();
+ this.panel3.SuspendLayout();
+ this.panel4.SuspendLayout();
+ this.SuspendLayout();
+
+ //
+ // button25
+ //
+ this.button25.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button25.Location = new System.Drawing.Point(278, 3);
+ this.button25.Name = "button25";
+ this.button25.Size = new System.Drawing.Size(75, 20);
+ this.button25.TabIndex = 56;
+ this.button25.Text = "Install Addon";
+ this.button25.UseVisualStyleBackColor = true;
+ this.button25.Click += new System.EventHandler(this.button25_Click);
+ //
+ // button21
+ //
+ this.button21.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button21.Location = new System.Drawing.Point(356, 3);
+ this.button21.Name = "button21";
+ this.button21.Size = new System.Drawing.Size(128, 20);
+ this.button21.TabIndex = 44;
+ this.button21.Text = "Register UserAgent Library";
+ this.button21.UseVisualStyleBackColor = true;
+ this.button21.Click += new System.EventHandler(this.Button21Click);
+ //
+ // textBox5
+ //
+ this.textBox5.Location = new System.Drawing.Point(97, 25);
+ this.textBox5.Multiline = true;
+ this.textBox5.Name = "textBox5";
+ this.textBox5.Size = new System.Drawing.Size(71, 18);
+ this.textBox5.TabIndex = 20;
+ this.textBox5.Text = "0";
+ this.textBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.textBox5.TextChanged += new System.EventHandler(this.TextBox5TextChanged);
+ //
+ // label15
+ //
+ this.label15.Location = new System.Drawing.Point(57, 6);
+ this.label15.Name = "label15";
+ this.label15.Size = new System.Drawing.Size(40, 16);
+ this.label15.TabIndex = 12;
+ this.label15.Text = "Name:";
+ //
+ // label13
+ //
+ this.label13.Location = new System.Drawing.Point(57, 27);
+ this.label13.Name = "label13";
+ this.label13.Size = new System.Drawing.Size(34, 13);
+ this.label13.TabIndex = 7;
+ this.label13.Text = "ID:";
+ //
+ // textBox2
+ //
+ this.textBox2.Location = new System.Drawing.Point(97, 3);
+ this.textBox2.Name = "textBox2";
+ this.textBox2.Size = new System.Drawing.Size(121, 20);
+ this.textBox2.TabIndex = 11;
+ this.textBox2.Text = "Player";
+ this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.textBox2.TextChanged += new System.EventHandler(this.TextBox2TextChanged);
+ //
+ // button4
+ //
+ this.button4.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button4.Location = new System.Drawing.Point(171, 24);
+ this.button4.Name = "button4";
+ this.button4.Size = new System.Drawing.Size(48, 20);
+ this.button4.TabIndex = 9;
+ this.button4.Text = "Regen";
+ this.button4.UseVisualStyleBackColor = true;
+ this.button4.Click += new System.EventHandler(this.Button4Click);
+ //
+ // pictureBox2
+ //
+ this.pictureBox2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox2.BackgroundImage")));
+ this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.pictureBox2.Location = new System.Drawing.Point(3, 3);
+ this.pictureBox2.Name = "pictureBox2";
+ this.pictureBox2.Size = new System.Drawing.Size(43, 41);
+ this.pictureBox2.TabIndex = 7;
+ this.pictureBox2.TabStop = false;
+ //
+ // button8
+ //
+ this.button8.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button8.Location = new System.Drawing.Point(6, 3);
+ this.button8.Name = "button8";
+ this.button8.Size = new System.Drawing.Size(104, 20);
+ this.button8.TabIndex = 35;
+ this.button8.Text = "Customize Character";
+ this.button8.UseVisualStyleBackColor = true;
+ this.button8.Click += new System.EventHandler(this.Button8Click);
+ //
+ // button3
+ //
+ this.button3.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button3.Location = new System.Drawing.Point(157, 3);
+ this.button3.Name = "button3";
+ this.button3.Size = new System.Drawing.Size(81, 20);
+ this.button3.TabIndex = 6;
+ this.button3.Text = "Studio with Map";
+ this.button3.UseVisualStyleBackColor = true;
+ this.button3.Click += new System.EventHandler(this.Button3Click);
+ //
+ // label25
+ //
+ this.label25.Location = new System.Drawing.Point(236, 10);
+ this.label25.Name = "label25";
+ this.label25.Size = new System.Drawing.Size(109, 14);
+ this.label25.TabIndex = 16;
+ this.label25.Text = "SELECTED CLIENT:";
+ //
+ // label26
+ //
+ this.label26.Location = new System.Drawing.Point(341, 10);
+ this.label26.Name = "label26";
+ this.label26.Size = new System.Drawing.Size(391, 13);
+ this.label26.TabIndex = 17;
+ this.label26.Text = "2009E";
+ //
+ // label27
+ //
+ this.label27.Location = new System.Drawing.Point(236, 24);
+ this.label27.Name = "label27";
+ this.label27.Size = new System.Drawing.Size(95, 12);
+ this.label27.TabIndex = 18;
+ this.label27.Text = "SELECTED MAP:";
+ //
+ // label28
+ //
+ this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label28.Location = new System.Drawing.Point(329, 25);
+ this.label28.Name = "label28";
+ this.label28.Size = new System.Drawing.Size(403, 11);
+ this.label28.TabIndex = 19;
+ this.label28.Text = "Baseplate.rbxl";
+ //
+ // label11
+ //
+ this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label11.Location = new System.Drawing.Point(3, 212);
+ this.label11.Name = "label11";
+ this.label11.Size = new System.Drawing.Size(75, 48);
+ this.label11.TabIndex = 50;
+ this.label11.Text = "v1.0";
+ this.label11.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // label12
+ //
+ this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label12.Location = new System.Drawing.Point(4, 47);
+ this.label12.Name = "label12";
+ this.label12.Size = new System.Drawing.Size(214, 17);
+ this.label12.TabIndex = 0;
+ this.label12.Text = "Novetus!";
+ this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // label16
+ //
+ this.label16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label16.Location = new System.Drawing.Point(52, 3);
+ this.label16.Name = "label16";
+ this.label16.Size = new System.Drawing.Size(2, 41);
+ this.label16.TabIndex = 51;
+ //
+ // button20
+ //
+ this.button20.Location = new System.Drawing.Point(3, 30);
+ this.button20.Name = "button20";
+ this.button20.Size = new System.Drawing.Size(75, 23);
+ this.button20.TabIndex = 57;
+ this.button20.TabStop = false;
+ this.button20.Text = "HOST";
+ this.button20.UseVisualStyleBackColor = true;
+ this.button20.Click += new System.EventHandler(this.button20_Click);
+ //
+ // button27
+ //
+ this.button27.Location = new System.Drawing.Point(3, 4);
+ this.button27.Name = "button27";
+ this.button27.Size = new System.Drawing.Size(75, 23);
+ this.button27.TabIndex = 58;
+ this.button27.TabStop = false;
+ this.button27.Text = "JOIN";
+ this.button27.UseVisualStyleBackColor = true;
+ this.button27.Click += new System.EventHandler(this.button27_Click);
+ //
+ // panel1
+ //
+ this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.panel1.Controls.Add(this.button33);
+ this.panel1.Controls.Add(this.button32);
+ this.panel1.Controls.Add(this.button31);
+ this.panel1.Controls.Add(this.button30);
+ this.panel1.Controls.Add(this.button29);
+ this.panel1.Controls.Add(this.label11);
+ this.panel1.Controls.Add(this.button28);
+ this.panel1.Controls.Add(this.button27);
+ this.panel1.Controls.Add(this.button20);
+ this.panel1.Location = new System.Drawing.Point(1, 74);
+ this.panel1.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(84, 272);
+ this.panel1.TabIndex = 59;
+ //
+ // button33
+ //
+ this.button33.Location = new System.Drawing.Point(3, 186);
+ this.button33.Name = "button33";
+ this.button33.Size = new System.Drawing.Size(75, 23);
+ this.button33.TabIndex = 64;
+ this.button33.TabStop = false;
+ this.button33.Text = "SETTINGS";
+ this.button33.UseVisualStyleBackColor = true;
+ this.button33.Click += new System.EventHandler(this.button33_Click);
+ //
+ // button32
+ //
+ this.button32.Location = new System.Drawing.Point(3, 160);
+ this.button32.Name = "button32";
+ this.button32.Size = new System.Drawing.Size(75, 23);
+ this.button32.TabIndex = 63;
+ this.button32.TabStop = false;
+ this.button32.Text = "UPDATES";
+ this.button32.UseVisualStyleBackColor = true;
+ this.button32.Click += new System.EventHandler(this.button32_Click);
+ //
+ // button31
+ //
+ this.button31.Location = new System.Drawing.Point(3, 134);
+ this.button31.Name = "button31";
+ this.button31.Size = new System.Drawing.Size(75, 23);
+ this.button31.TabIndex = 62;
+ this.button31.TabStop = false;
+ this.button31.Text = "CONSOLE";
+ this.button31.UseVisualStyleBackColor = true;
+ this.button31.Click += new System.EventHandler(this.button31_Click);
+ //
+ // button30
+ //
+ this.button30.Location = new System.Drawing.Point(3, 108);
+ this.button30.Name = "button30";
+ this.button30.Size = new System.Drawing.Size(75, 23);
+ this.button30.TabIndex = 61;
+ this.button30.TabStop = false;
+ this.button30.Text = "SAVED";
+ this.button30.UseVisualStyleBackColor = true;
+ this.button30.Click += new System.EventHandler(this.button30_Click);
+ //
+ // button29
+ //
+ this.button29.Location = new System.Drawing.Point(3, 82);
+ this.button29.Name = "button29";
+ this.button29.Size = new System.Drawing.Size(75, 23);
+ this.button29.TabIndex = 60;
+ this.button29.TabStop = false;
+ this.button29.Text = "MAPS";
+ this.button29.UseVisualStyleBackColor = true;
+ this.button29.Click += new System.EventHandler(this.button29_Click);
+ //
+ // button28
+ //
+ this.button28.Location = new System.Drawing.Point(3, 56);
+ this.button28.Name = "button28";
+ this.button28.Size = new System.Drawing.Size(75, 23);
+ this.button28.TabIndex = 59;
+ this.button28.TabStop = false;
+ this.button28.Text = "CLIENTS";
+ this.button28.UseVisualStyleBackColor = true;
+ this.button28.Click += new System.EventHandler(this.button28_Click);
+ //
+ // button34
+ //
+ this.button34.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button34.Location = new System.Drawing.Point(241, 3);
+ this.button34.Name = "button34";
+ this.button34.Size = new System.Drawing.Size(34, 20);
+ this.button34.TabIndex = 60;
+ this.button34.Text = "SDK";
+ this.button34.UseVisualStyleBackColor = true;
+ this.button34.Click += new System.EventHandler(this.button34_Click);
+ //
+ // panel2
+ //
+ this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.panel2.Controls.Add(this.tabControl1);
+ this.panel2.Location = new System.Drawing.Point(91, 74);
+ this.panel2.Name = "panel2";
+ this.panel2.Size = new System.Drawing.Size(646, 311);
+ this.panel2.TabIndex = 61;
+ //
+ // tabControl1
+ //
+ this.tabControl1.Alignment = System.Windows.Forms.TabAlignment.Bottom;
+ this.tabControl1.Controls.Add(this.tabPage1);
+ this.tabControl1.Controls.Add(this.tabPage2);
+ this.tabControl1.Controls.Add(this.tabPage3);
+ this.tabControl1.Controls.Add(this.tabPage4);
+ this.tabControl1.Controls.Add(this.tabPage6);
+ this.tabControl1.Controls.Add(this.tabPage7);
+ this.tabControl1.Controls.Add(this.tabPage8);
+ this.tabControl1.Controls.Add(this.tabPage5);
+ this.tabControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.tabControl1.Location = new System.Drawing.Point(3, 3);
+ this.tabControl1.Multiline = true;
+ this.tabControl1.Name = "tabControl1";
+ this.tabControl1.SelectedIndex = 0;
+ this.tabControl1.Size = new System.Drawing.Size(633, 291);
+ this.tabControl1.TabIndex = 1;
+ this.tabControl1.TabStop = false;
+ this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
+ //
+ // tabPage1
+ //
+ this.tabPage1.Controls.Add(this.label24);
+ this.tabPage1.Controls.Add(this.label23);
+ this.tabPage1.Controls.Add(this.label2);
+ this.tabPage1.Controls.Add(this.label1);
+ this.tabPage1.Controls.Add(this.button7);
+ this.tabPage1.Controls.Add(this.button11);
+ this.tabPage1.Controls.Add(this.numericUpDown1);
+ this.tabPage1.Controls.Add(this.button19);
+ this.tabPage1.Controls.Add(this.button10);
+ this.tabPage1.Controls.Add(this.label4);
+ this.tabPage1.Controls.Add(this.button1);
+ this.tabPage1.Controls.Add(this.textBox1);
+ this.tabPage1.Location = new System.Drawing.Point(4, 4);
+ this.tabPage1.Name = "tabPage1";
+ this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage1.RightToLeft = System.Windows.Forms.RightToLeft.No;
+ this.tabPage1.Size = new System.Drawing.Size(625, 265);
+ this.tabPage1.TabIndex = 0;
+ this.tabPage1.Text = "JOIN";
+ this.tabPage1.ToolTipText = "Join a server via IP Address";
+ this.tabPage1.UseVisualStyleBackColor = true;
+ //
+ // label24
+ //
+ this.label24.AutoSize = true;
+ this.label24.Location = new System.Drawing.Point(365, 7);
+ this.label24.Name = "label24";
+ this.label24.Size = new System.Drawing.Size(60, 13);
+ this.label24.TabIndex = 52;
+ this.label24.Text = "Server Port";
+ //
+ // label23
+ //
+ this.label23.AutoSize = true;
+ this.label23.Location = new System.Drawing.Point(200, 7);
+ this.label23.Name = "label23";
+ this.label23.Size = new System.Drawing.Size(92, 13);
+ this.label23.TabIndex = 51;
+ this.label23.Text = "Server IP Address";
+ //
+ // label2
+ //
+ this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label2.Location = new System.Drawing.Point(9, 200);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(612, 2);
+ this.label2.TabIndex = 50;
+ //
+ // label1
+ //
+ this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label1.Location = new System.Drawing.Point(9, 80);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(612, 2);
+ this.label1.TabIndex = 49;
+ //
+ // button7
+ //
+ this.button7.Location = new System.Drawing.Point(395, 49);
+ this.button7.Name = "button7";
+ this.button7.Size = new System.Drawing.Size(51, 21);
+ this.button7.TabIndex = 48;
+ this.button7.Text = "RESET";
+ this.button7.UseVisualStyleBackColor = true;
+ this.button7.Click += new System.EventHandler(this.Button7Click);
+ //
+ // button11
+ //
+ this.button11.Location = new System.Drawing.Point(344, 49);
+ this.button11.Name = "button11";
+ this.button11.Size = new System.Drawing.Size(45, 21);
+ this.button11.TabIndex = 46;
+ this.button11.Text = "SAVE";
+ this.button11.UseVisualStyleBackColor = true;
+ this.button11.Click += new System.EventHandler(this.Button11Click);
+ //
+ // numericUpDown1
+ //
+ this.numericUpDown1.Location = new System.Drawing.Point(344, 23);
+ this.numericUpDown1.Maximum = new decimal(new int[] {
+ 65535,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown1.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown1.Name = "numericUpDown1";
+ this.numericUpDown1.Size = new System.Drawing.Size(102, 20);
+ this.numericUpDown1.TabIndex = 18;
+ this.numericUpDown1.Value = new decimal(new int[] {
+ 53640,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown1.ValueChanged += new System.EventHandler(this.NumericUpDown1ValueChanged);
+ //
+ // button19
+ //
+ this.button19.Location = new System.Drawing.Point(325, 210);
+ this.button19.Name = "button19";
+ this.button19.Size = new System.Drawing.Size(293, 36);
+ this.button19.TabIndex = 16;
+ this.button19.Text = "PLAY SOLO";
+ this.button19.UseVisualStyleBackColor = true;
+ this.button19.Click += new System.EventHandler(this.Button19Click);
+ //
+ // button10
+ //
+ this.button10.Location = new System.Drawing.Point(183, 49);
+ this.button10.Name = "button10";
+ this.button10.Size = new System.Drawing.Size(120, 21);
+ this.button10.TabIndex = 15;
+ this.button10.Text = "SAVE SERVER";
+ this.button10.UseVisualStyleBackColor = true;
+ this.button10.Click += new System.EventHandler(this.Button10Click);
+ //
+ // label4
+ //
+ this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label4.ForeColor = System.Drawing.Color.Red;
+ this.label4.Location = new System.Drawing.Point(9, 89);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(613, 99);
+ this.label4.TabIndex = 4;
+ this.label4.Text = resources.GetString("label4.Text");
+ this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // button1
+ //
+ this.button1.Location = new System.Drawing.Point(10, 210);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(293, 36);
+ this.button1.TabIndex = 3;
+ this.button1.Text = "JOIN SERVER";
+ this.button1.UseVisualStyleBackColor = true;
+ this.button1.Click += new System.EventHandler(this.Button1Click);
+ //
+ // textBox1
+ //
+ this.textBox1.Location = new System.Drawing.Point(149, 23);
+ this.textBox1.Name = "textBox1";
+ this.textBox1.Size = new System.Drawing.Size(189, 20);
+ this.textBox1.TabIndex = 0;
+ this.textBox1.Text = "localhost";
+ this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.textBox1.TextChanged += new System.EventHandler(this.TextBox1TextChanged);
+ //
+ // tabPage2
+ //
+ this.tabPage2.Controls.Add(this.label19);
+ this.tabPage2.Controls.Add(this.textBox3);
+ this.tabPage2.Controls.Add(this.label17);
+ this.tabPage2.Controls.Add(this.checkBox4);
+ this.tabPage2.Controls.Add(this.button23);
+ this.tabPage2.Controls.Add(this.button22);
+ this.tabPage2.Controls.Add(this.numericUpDown3);
+ this.tabPage2.Controls.Add(this.numericUpDown2);
+ this.tabPage2.Controls.Add(this.label29);
+ this.tabPage2.Controls.Add(this.label35);
+ this.tabPage2.Controls.Add(this.button18);
+ this.tabPage2.Controls.Add(this.button2);
+ this.tabPage2.Location = new System.Drawing.Point(4, 4);
+ this.tabPage2.Name = "tabPage2";
+ this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage2.Size = new System.Drawing.Size(625, 265);
+ this.tabPage2.TabIndex = 1;
+ this.tabPage2.Text = "HOST";
+ this.tabPage2.ToolTipText = "Start a server for other players to play";
+ this.tabPage2.UseVisualStyleBackColor = true;
+ //
+ // label19
+ //
+ this.label19.AutoSize = true;
+ this.label19.Location = new System.Drawing.Point(6, 5);
+ this.label19.Name = "label19";
+ this.label19.Size = new System.Drawing.Size(129, 13);
+ this.label19.TabIndex = 60;
+ this.label19.Text = "SERVER INFORMATION";
+ //
+ // textBox3
+ //
+ this.textBox3.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.textBox3.Location = new System.Drawing.Point(6, 21);
+ this.textBox3.Multiline = true;
+ this.textBox3.Name = "textBox3";
+ this.textBox3.ReadOnly = true;
+ this.textBox3.ScrollBars = System.Windows.Forms.ScrollBars.Both;
+ this.textBox3.Size = new System.Drawing.Size(612, 113);
+ this.textBox3.TabIndex = 59;
+ //
+ // label17
+ //
+ this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label17.ForeColor = System.Drawing.Color.Red;
+ this.label17.Location = new System.Drawing.Point(116, 137);
+ this.label17.Name = "label17";
+ this.label17.Size = new System.Drawing.Size(382, 14);
+ this.label17.TabIndex = 58;
+ this.label17.Text = "NOTE: The webserver port is static and it cannot be changed. It is 40735.";
+ this.label17.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // checkBox4
+ //
+ this.checkBox4.Location = new System.Drawing.Point(318, 180);
+ this.checkBox4.Name = "checkBox4";
+ this.checkBox4.Size = new System.Drawing.Size(104, 17);
+ this.checkBox4.TabIndex = 57;
+ this.checkBox4.Text = "Toggle UPnP";
+ this.checkBox4.UseVisualStyleBackColor = true;
+ this.checkBox4.CheckedChanged += new System.EventHandler(this.CheckBox4CheckedChanged);
+ this.checkBox4.Click += new System.EventHandler(this.CheckBox4Click);
+ //
+ // button23
+ //
+ this.button23.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button23.Location = new System.Drawing.Point(176, 177);
+ this.button23.Name = "button23";
+ this.button23.Size = new System.Drawing.Size(66, 25);
+ this.button23.TabIndex = 51;
+ this.button23.Text = "SAVE";
+ this.button23.UseVisualStyleBackColor = true;
+ this.button23.Click += new System.EventHandler(this.Button23Click);
+ //
+ // button22
+ //
+ this.button22.Location = new System.Drawing.Point(248, 177);
+ this.button22.Name = "button22";
+ this.button22.Size = new System.Drawing.Size(63, 25);
+ this.button22.TabIndex = 50;
+ this.button22.Text = "RESET";
+ this.button22.UseVisualStyleBackColor = true;
+ this.button22.Click += new System.EventHandler(this.Button22Click);
+ //
+ // numericUpDown3
+ //
+ this.numericUpDown3.Location = new System.Drawing.Point(383, 154);
+ this.numericUpDown3.Maximum = new decimal(new int[] {
+ 256,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown3.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown3.Name = "numericUpDown3";
+ this.numericUpDown3.Size = new System.Drawing.Size(49, 20);
+ this.numericUpDown3.TabIndex = 49;
+ this.numericUpDown3.Value = new decimal(new int[] {
+ 12,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown3.ValueChanged += new System.EventHandler(this.NumericUpDown3ValueChanged);
+ //
+ // numericUpDown2
+ //
+ this.numericUpDown2.Location = new System.Drawing.Point(247, 154);
+ this.numericUpDown2.Maximum = new decimal(new int[] {
+ 65535,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown2.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown2.Name = "numericUpDown2";
+ this.numericUpDown2.Size = new System.Drawing.Size(63, 20);
+ this.numericUpDown2.TabIndex = 48;
+ this.numericUpDown2.Value = new decimal(new int[] {
+ 53640,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown2.ValueChanged += new System.EventHandler(this.NumericUpDown2ValueChanged);
+ //
+ // label29
+ //
+ this.label29.Location = new System.Drawing.Point(318, 156);
+ this.label29.Name = "label29";
+ this.label29.Size = new System.Drawing.Size(60, 16);
+ this.label29.TabIndex = 46;
+ this.label29.Text = "Player Limit";
+ //
+ // label35
+ //
+ this.label35.Location = new System.Drawing.Point(176, 156);
+ this.label35.Name = "label35";
+ this.label35.Size = new System.Drawing.Size(65, 16);
+ this.label35.TabIndex = 44;
+ this.label35.Text = "Server Port";
+ this.label35.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // button18
+ //
+ this.button18.Location = new System.Drawing.Point(326, 213);
+ this.button18.Name = "button18";
+ this.button18.Size = new System.Drawing.Size(293, 36);
+ this.button18.TabIndex = 20;
+ this.button18.Text = "START SERVER WITH NO GRAPHICS";
+ this.button18.UseVisualStyleBackColor = true;
+ this.button18.Click += new System.EventHandler(this.Button18Click);
+ //
+ // button2
+ //
+ this.button2.Location = new System.Drawing.Point(6, 213);
+ this.button2.Name = "button2";
+ this.button2.Size = new System.Drawing.Size(293, 36);
+ this.button2.TabIndex = 2;
+ this.button2.Text = "START SERVER";
+ this.button2.UseVisualStyleBackColor = true;
+ this.button2.Click += new System.EventHandler(this.Button2Click);
+ //
+ // tabPage3
+ //
+ this.tabPage3.Controls.Add(this.textBox6);
+ this.tabPage3.Controls.Add(this.label30);
+ this.tabPage3.Controls.Add(this.listBox2);
+ this.tabPage3.Location = new System.Drawing.Point(4, 4);
+ this.tabPage3.Name = "tabPage3";
+ this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage3.Size = new System.Drawing.Size(625, 265);
+ this.tabPage3.TabIndex = 4;
+ this.tabPage3.Text = "CLIENTS";
+ this.tabPage3.ToolTipText = "Select a ROBLOX Client to load your game";
+ this.tabPage3.UseVisualStyleBackColor = true;
+ //
+ // textBox6
+ //
+ this.textBox6.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.textBox6.Location = new System.Drawing.Point(6, 179);
+ this.textBox6.Multiline = true;
+ this.textBox6.Name = "textBox6";
+ this.textBox6.ReadOnly = true;
+ this.textBox6.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
+ this.textBox6.Size = new System.Drawing.Size(612, 73);
+ this.textBox6.TabIndex = 4;
+ this.textBox6.Text = "textBox6";
+ //
+ // label30
+ //
+ this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label30.ForeColor = System.Drawing.Color.Red;
+ this.label30.Location = new System.Drawing.Point(6, 118);
+ this.label30.Name = "label30";
+ this.label30.Size = new System.Drawing.Size(612, 58);
+ this.label30.TabIndex = 3;
+ this.label30.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ this.label30.Visible = false;
+ //
+ // listBox2
+ //
+ this.listBox2.FormattingEnabled = true;
+ this.listBox2.Location = new System.Drawing.Point(6, 7);
+ this.listBox2.Name = "listBox2";
+ this.listBox2.Size = new System.Drawing.Size(612, 108);
+ this.listBox2.TabIndex = 2;
+ this.listBox2.SelectedIndexChanged += new System.EventHandler(this.ListBox2SelectedIndexChanged);
+ //
+ // tabPage4
+ //
+ this.tabPage4.Controls.Add(this.textBox4);
+ this.tabPage4.Controls.Add(this.button24);
+ this.tabPage4.Controls.Add(this.treeView1);
+ this.tabPage4.Controls.Add(this.button6);
+ this.tabPage4.Location = new System.Drawing.Point(4, 4);
+ this.tabPage4.Name = "tabPage4";
+ this.tabPage4.Size = new System.Drawing.Size(625, 265);
+ this.tabPage4.TabIndex = 10;
+ this.tabPage4.Text = "MAPS";
+ this.tabPage4.UseVisualStyleBackColor = true;
+ //
+ // textBox4
+ //
+ this.textBox4.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.textBox4.Location = new System.Drawing.Point(7, 143);
+ this.textBox4.Multiline = true;
+ this.textBox4.Name = "textBox4";
+ this.textBox4.ReadOnly = true;
+ this.textBox4.ScrollBars = System.Windows.Forms.ScrollBars.Both;
+ this.textBox4.Size = new System.Drawing.Size(611, 110);
+ this.textBox4.TabIndex = 67;
+ //
+ // button24
+ //
+ this.button24.Location = new System.Drawing.Point(400, 3);
+ this.button24.Name = "button24";
+ this.button24.Size = new System.Drawing.Size(98, 23);
+ this.button24.TabIndex = 59;
+ this.button24.Text = "Refresh Map List";
+ this.button24.UseVisualStyleBackColor = true;
+ this.button24.Click += new System.EventHandler(this.Button24Click);
+ //
+ // treeView1
+ //
+ this.treeView1.HideSelection = false;
+ this.treeView1.Location = new System.Drawing.Point(7, 29);
+ this.treeView1.Name = "treeView1";
+ this.treeView1.Size = new System.Drawing.Size(611, 108);
+ this.treeView1.TabIndex = 54;
+ this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeView1AfterSelect);
+ //
+ // button6
+ //
+ this.button6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button6.Location = new System.Drawing.Point(504, 3);
+ this.button6.Name = "button6";
+ this.button6.Size = new System.Drawing.Size(114, 23);
+ this.button6.TabIndex = 56;
+ this.button6.Text = "Open Maps Folder";
+ this.button6.UseVisualStyleBackColor = true;
+ this.button6.Click += new System.EventHandler(this.Button6Click);
+ //
+ // tabPage6
+ //
+ this.tabPage6.Controls.Add(this.button17);
+ this.tabPage6.Controls.Add(this.button16);
+ this.tabPage6.Controls.Add(this.button15);
+ this.tabPage6.Controls.Add(this.button14);
+ this.tabPage6.Controls.Add(this.button13);
+ this.tabPage6.Controls.Add(this.button12);
+ this.tabPage6.Controls.Add(this.label38);
+ this.tabPage6.Controls.Add(this.label39);
+ this.tabPage6.Controls.Add(this.label37);
+ this.tabPage6.Controls.Add(this.label36);
+ this.tabPage6.Controls.Add(this.listBox4);
+ this.tabPage6.Controls.Add(this.listBox3);
+ this.tabPage6.Controls.Add(this.label21);
+ this.tabPage6.Controls.Add(this.label14);
+ this.tabPage6.Location = new System.Drawing.Point(4, 4);
+ this.tabPage6.Name = "tabPage6";
+ this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage6.Size = new System.Drawing.Size(625, 265);
+ this.tabPage6.TabIndex = 6;
+ this.tabPage6.Text = "SAVED";
+ this.tabPage6.ToolTipText = "Lists all your saved servers and ports";
+ this.tabPage6.UseVisualStyleBackColor = true;
+ //
+ // button17
+ //
+ this.button17.Location = new System.Drawing.Point(381, 201);
+ this.button17.Name = "button17";
+ this.button17.Size = new System.Drawing.Size(54, 23);
+ this.button17.TabIndex = 13;
+ this.button17.Text = "Add";
+ this.button17.UseVisualStyleBackColor = true;
+ this.button17.Click += new System.EventHandler(this.Button17Click);
+ //
+ // button16
+ //
+ this.button16.Location = new System.Drawing.Point(57, 200);
+ this.button16.Name = "button16";
+ this.button16.Size = new System.Drawing.Size(60, 23);
+ this.button16.TabIndex = 12;
+ this.button16.Text = "Add";
+ this.button16.UseVisualStyleBackColor = true;
+ this.button16.Click += new System.EventHandler(this.Button16Click);
+ //
+ // button15
+ //
+ this.button15.Location = new System.Drawing.Point(507, 201);
+ this.button15.Name = "button15";
+ this.button15.Size = new System.Drawing.Size(60, 23);
+ this.button15.TabIndex = 11;
+ this.button15.Text = "Reset";
+ this.button15.UseVisualStyleBackColor = true;
+ this.button15.Click += new System.EventHandler(this.Button15Click);
+ //
+ // button14
+ //
+ this.button14.Location = new System.Drawing.Point(188, 200);
+ this.button14.Name = "button14";
+ this.button14.Size = new System.Drawing.Size(55, 23);
+ this.button14.TabIndex = 10;
+ this.button14.Text = "Reset";
+ this.button14.UseVisualStyleBackColor = true;
+ this.button14.Click += new System.EventHandler(this.Button14Click);
+ //
+ // button13
+ //
+ this.button13.Location = new System.Drawing.Point(441, 201);
+ this.button13.Name = "button13";
+ this.button13.Size = new System.Drawing.Size(60, 23);
+ this.button13.TabIndex = 9;
+ this.button13.Text = "Remove";
+ this.button13.UseVisualStyleBackColor = true;
+ this.button13.Click += new System.EventHandler(this.Button13Click);
+ //
+ // button12
+ //
+ this.button12.Location = new System.Drawing.Point(120, 200);
+ this.button12.Name = "button12";
+ this.button12.Size = new System.Drawing.Size(62, 23);
+ this.button12.TabIndex = 8;
+ this.button12.Text = "Remove";
+ this.button12.UseVisualStyleBackColor = true;
+ this.button12.Click += new System.EventHandler(this.Button12Click);
+ //
+ // label38
+ //
+ this.label38.Location = new System.Drawing.Point(396, 241);
+ this.label38.Name = "label38";
+ this.label38.Size = new System.Drawing.Size(120, 20);
+ this.label38.TabIndex = 7;
+ //
+ // label39
+ //
+ this.label39.Location = new System.Drawing.Point(396, 227);
+ this.label39.Name = "label39";
+ this.label39.Size = new System.Drawing.Size(149, 12);
+ this.label39.TabIndex = 6;
+ this.label39.Text = "CURRENT SERVER PORT:";
+ //
+ // label37
+ //
+ this.label37.Location = new System.Drawing.Point(92, 241);
+ this.label37.Name = "label37";
+ this.label37.Size = new System.Drawing.Size(120, 20);
+ this.label37.TabIndex = 5;
+ //
+ // label36
+ //
+ this.label36.Location = new System.Drawing.Point(92, 227);
+ this.label36.Name = "label36";
+ this.label36.Size = new System.Drawing.Size(136, 12);
+ this.label36.TabIndex = 4;
+ this.label36.Text = "CURRENT SERVER IP:";
+ //
+ // listBox4
+ //
+ this.listBox4.FormattingEnabled = true;
+ this.listBox4.Location = new System.Drawing.Point(325, 21);
+ this.listBox4.Name = "listBox4";
+ this.listBox4.Size = new System.Drawing.Size(292, 173);
+ this.listBox4.TabIndex = 3;
+ this.listBox4.SelectedIndexChanged += new System.EventHandler(this.ListBox4SelectedIndexChanged);
+ //
+ // listBox3
+ //
+ this.listBox3.FormattingEnabled = true;
+ this.listBox3.Location = new System.Drawing.Point(6, 21);
+ this.listBox3.Name = "listBox3";
+ this.listBox3.Size = new System.Drawing.Size(292, 173);
+ this.listBox3.TabIndex = 2;
+ this.listBox3.SelectedIndexChanged += new System.EventHandler(this.ListBox3SelectedIndexChanged);
+ //
+ // label21
+ //
+ this.label21.Location = new System.Drawing.Point(325, 3);
+ this.label21.Name = "label21";
+ this.label21.Size = new System.Drawing.Size(292, 15);
+ this.label21.TabIndex = 1;
+ this.label21.Text = "PORTS";
+ this.label21.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // label14
+ //
+ this.label14.Location = new System.Drawing.Point(3, 3);
+ this.label14.Name = "label14";
+ this.label14.Size = new System.Drawing.Size(295, 15);
+ this.label14.TabIndex = 0;
+ this.label14.Text = "SERVERS";
+ this.label14.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // tabPage7
+ //
+ this.tabPage7.BackColor = System.Drawing.SystemColors.ControlText;
+ this.tabPage7.Controls.Add(this.richTextBox1);
+ this.tabPage7.Location = new System.Drawing.Point(4, 4);
+ this.tabPage7.Name = "tabPage7";
+ this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage7.Size = new System.Drawing.Size(625, 265);
+ this.tabPage7.TabIndex = 7;
+ this.tabPage7.Text = "CMD";
+ //
+ // richTextBox1
+ //
+ this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.richTextBox1.BackColor = System.Drawing.SystemColors.ControlText;
+ this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox1.ForeColor = System.Drawing.Color.White;
+ this.richTextBox1.Location = new System.Drawing.Point(3, 3);
+ this.richTextBox1.Name = "richTextBox1";
+ this.richTextBox1.Size = new System.Drawing.Size(616, 256);
+ this.richTextBox1.TabIndex = 2;
+ this.richTextBox1.Text = "";
+ this.richTextBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.richTextBox1_KeyDown);
+ //
+ // tabPage8
+ //
+ this.tabPage8.Controls.Add(this.richTextBox2);
+ this.tabPage8.Location = new System.Drawing.Point(4, 4);
+ this.tabPage8.Name = "tabPage8";
+ this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage8.Size = new System.Drawing.Size(625, 265);
+ this.tabPage8.TabIndex = 8;
+ this.tabPage8.Text = "UPDATES";
+ this.tabPage8.UseVisualStyleBackColor = true;
+ //
+ // richTextBox2
+ //
+ this.richTextBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.richTextBox2.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.richTextBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox2.Location = new System.Drawing.Point(3, 3);
+ this.richTextBox2.Name = "richTextBox2";
+ this.richTextBox2.ReadOnly = true;
+ this.richTextBox2.Size = new System.Drawing.Size(616, 256);
+ this.richTextBox2.TabIndex = 2;
+ this.richTextBox2.Text = "";
+ //
+ // tabPage5
+ //
+ this.tabPage5.Controls.Add(this.panel5);
+ this.tabPage5.Controls.Add(this.richTextBox3);
+ this.tabPage5.Controls.Add(this.label10);
+ this.tabPage5.Controls.Add(this.label18);
+ this.tabPage5.Controls.Add(this.label8);
+ this.tabPage5.Controls.Add(this.label7);
+ this.tabPage5.Location = new System.Drawing.Point(4, 4);
+ this.tabPage5.Name = "tabPage5";
+ this.tabPage5.Size = new System.Drawing.Size(625, 265);
+ this.tabPage5.TabIndex = 9;
+ this.tabPage5.Text = "SETTINGS";
+ this.tabPage5.UseVisualStyleBackColor = true;
+ //
+ // panel5
+ //
+ this.panel5.Controls.Add(this.label3);
+ this.panel5.Controls.Add(this.comboBox2);
+ this.panel5.Controls.Add(this.label31);
+ this.panel5.Controls.Add(this.comboBox1);
+ this.panel5.Controls.Add(this.checkBox2);
+ this.panel5.Controls.Add(this.checkBox6);
+ this.panel5.Controls.Add(this.checkBox7);
+ this.panel5.Controls.Add(this.label22);
+ this.panel5.Controls.Add(this.checkBox5);
+ this.panel5.Controls.Add(this.checkBox3);
+ this.panel5.Controls.Add(this.checkBox1);
+ this.panel5.Controls.Add(this.button9);
+ this.panel5.Controls.Add(this.button26);
+ this.panel5.Controls.Add(this.button5);
+ this.panel5.Location = new System.Drawing.Point(3, 4);
+ this.panel5.Name = "panel5";
+ this.panel5.Size = new System.Drawing.Size(200, 259);
+ this.panel5.TabIndex = 68;
+ //
+ // label3
+ //
+ this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label3.ForeColor = System.Drawing.Color.Red;
+ this.label3.Location = new System.Drawing.Point(3, 158);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(191, 45);
+ this.label3.TabIndex = 74;
+ this.label3.Text = "NOTE: Some video settings may require multiple client restarts or may require man" +
+ "ual application by opening the Tools>Settings dialog in Studio and then closing " +
+ "it.";
+ this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // comboBox2
+ //
+ this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.comboBox2.FormattingEnabled = true;
+ this.comboBox2.Items.AddRange(new object[] {
+ "Very Low",
+ "Low",
+ "Medium",
+ "High",
+ "Ultra"});
+ this.comboBox2.Location = new System.Drawing.Point(90, 134);
+ this.comboBox2.Name = "comboBox2";
+ this.comboBox2.Size = new System.Drawing.Size(84, 21);
+ this.comboBox2.TabIndex = 73;
+ this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
+ //
+ // label31
+ //
+ this.label31.AutoSize = true;
+ this.label31.Location = new System.Drawing.Point(3, 111);
+ this.label31.Name = "label31";
+ this.label31.Size = new System.Drawing.Size(79, 13);
+ this.label31.TabIndex = 69;
+ this.label31.Text = "Graphics Mode";
+ //
+ // comboBox1
+ //
+ this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.comboBox1.FormattingEnabled = true;
+ this.comboBox1.Items.AddRange(new object[] {
+ "OpenGL",
+ "DirectX"});
+ this.comboBox1.Location = new System.Drawing.Point(90, 108);
+ this.comboBox1.Name = "comboBox1";
+ this.comboBox1.Size = new System.Drawing.Size(84, 21);
+ this.comboBox1.TabIndex = 68;
+ this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
+ //
+ // checkBox2
+ //
+ this.checkBox2.AutoSize = true;
+ this.checkBox2.Checked = true;
+ this.checkBox2.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.checkBox2.Location = new System.Drawing.Point(3, 3);
+ this.checkBox2.Name = "checkBox2";
+ this.checkBox2.Size = new System.Drawing.Size(135, 17);
+ this.checkBox2.TabIndex = 59;
+ this.checkBox2.Text = "Discord Rich Presence";
+ this.checkBox2.UseVisualStyleBackColor = true;
+ this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
+ //
+ // checkBox6
+ //
+ this.checkBox6.Location = new System.Drawing.Point(3, 240);
+ this.checkBox6.Name = "checkBox6";
+ this.checkBox6.Size = new System.Drawing.Size(131, 16);
+ this.checkBox6.TabIndex = 63;
+ this.checkBox6.Text = "ReShade FPS Display";
+ this.checkBox6.UseVisualStyleBackColor = true;
+ this.checkBox6.CheckedChanged += new System.EventHandler(this.checkBox6_CheckedChanged);
+ //
+ // checkBox7
+ //
+ this.checkBox7.AutoSize = true;
+ this.checkBox7.Location = new System.Drawing.Point(3, 223);
+ this.checkBox7.Name = "checkBox7";
+ this.checkBox7.Size = new System.Drawing.Size(164, 17);
+ this.checkBox7.TabIndex = 64;
+ this.checkBox7.Text = "ReShade Performance Mode";
+ this.checkBox7.UseVisualStyleBackColor = true;
+ this.checkBox7.CheckedChanged += new System.EventHandler(this.checkBox7_CheckedChanged);
+ //
+ // label22
+ //
+ this.label22.AutoSize = true;
+ this.label22.Location = new System.Drawing.Point(3, 137);
+ this.label22.Name = "label22";
+ this.label22.Size = new System.Drawing.Size(84, 13);
+ this.label22.TabIndex = 67;
+ this.label22.Text = "Graphics Quality";
+ //
+ // checkBox5
+ //
+ this.checkBox5.AutoSize = true;
+ this.checkBox5.Checked = true;
+ this.checkBox5.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.checkBox5.Location = new System.Drawing.Point(3, 206);
+ this.checkBox5.Name = "checkBox5";
+ this.checkBox5.Size = new System.Drawing.Size(107, 17);
+ this.checkBox5.TabIndex = 62;
+ this.checkBox5.Text = "Toggle ReShade";
+ this.checkBox5.UseVisualStyleBackColor = true;
+ this.checkBox5.CheckedChanged += new System.EventHandler(this.checkBox5_CheckedChanged);
+ //
+ // checkBox3
+ //
+ this.checkBox3.Location = new System.Drawing.Point(3, 19);
+ this.checkBox3.Name = "checkBox3";
+ this.checkBox3.Size = new System.Drawing.Size(77, 19);
+ this.checkBox3.TabIndex = 22;
+ this.checkBox3.Text = "Local Play";
+ this.checkBox3.UseVisualStyleBackColor = true;
+ this.checkBox3.CheckedChanged += new System.EventHandler(this.CheckBox3CheckedChanged);
+ //
+ // checkBox1
+ //
+ this.checkBox1.Checked = true;
+ this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.checkBox1.Location = new System.Drawing.Point(3, 37);
+ this.checkBox1.Name = "checkBox1";
+ this.checkBox1.Size = new System.Drawing.Size(124, 17);
+ this.checkBox1.TabIndex = 5;
+ this.checkBox1.Text = "Minimize on Launch";
+ this.checkBox1.UseCompatibleTextRendering = true;
+ this.checkBox1.UseVisualStyleBackColor = true;
+ this.checkBox1.CheckedChanged += new System.EventHandler(this.CheckBox1CheckedChanged);
+ //
+ // button9
+ //
+ this.button9.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button9.Location = new System.Drawing.Point(83, 79);
+ this.button9.Name = "button9";
+ this.button9.Size = new System.Drawing.Size(69, 20);
+ this.button9.TabIndex = 37;
+ this.button9.Text = "Reset Config";
+ this.button9.UseVisualStyleBackColor = true;
+ this.button9.Click += new System.EventHandler(this.Button9Click);
+ //
+ // button26
+ //
+ this.button26.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button26.Location = new System.Drawing.Point(3, 55);
+ this.button26.Name = "button26";
+ this.button26.Size = new System.Drawing.Size(94, 21);
+ this.button26.TabIndex = 57;
+ this.button26.Text = "Clear Asset Cache";
+ this.button26.UseVisualStyleBackColor = true;
+ this.button26.Click += new System.EventHandler(this.button26_Click);
+ //
+ // button5
+ //
+ this.button5.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button5.Location = new System.Drawing.Point(3, 79);
+ this.button5.Name = "button5";
+ this.button5.Size = new System.Drawing.Size(74, 20);
+ this.button5.TabIndex = 10;
+ this.button5.Text = "Save Config";
+ this.button5.UseVisualStyleBackColor = true;
+ this.button5.Click += new System.EventHandler(this.Button5Click);
+ //
+ // richTextBox3
+ //
+ this.richTextBox3.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.richTextBox3.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox3.Location = new System.Drawing.Point(209, 4);
+ this.richTextBox3.Name = "richTextBox3";
+ this.richTextBox3.ReadOnly = true;
+ this.richTextBox3.Size = new System.Drawing.Size(413, 219);
+ this.richTextBox3.TabIndex = 60;
+ this.richTextBox3.Text = "credits text";
+ //
+ // label10
+ //
+ this.label10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label10.Location = new System.Drawing.Point(209, 85);
+ this.label10.Name = "label10";
+ this.label10.Size = new System.Drawing.Size(413, 2);
+ this.label10.TabIndex = 53;
+ //
+ // label18
+ //
+ this.label18.Location = new System.Drawing.Point(336, 237);
+ this.label18.Name = "label18";
+ this.label18.Size = new System.Drawing.Size(155, 16);
+ this.label18.TabIndex = 58;
+ this.label18.Text = "qwertyuiopasdfghjklz";
+ this.label18.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // label8
+ //
+ this.label8.Location = new System.Drawing.Point(209, 237);
+ this.label8.Name = "label8";
+ this.label8.Size = new System.Drawing.Size(122, 16);
+ this.label8.TabIndex = 48;
+ this.label8.Text = "0.13333337";
+ this.label8.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ this.label8.Click += new System.EventHandler(this.label8_Click);
+ //
+ // label7
+ //
+ this.label7.Location = new System.Drawing.Point(491, 237);
+ this.label7.Name = "label7";
+ this.label7.Size = new System.Drawing.Size(128, 16);
+ this.label7.TabIndex = 54;
+ this.label7.Text = "PROJECT STARLIGHT";
+ this.label7.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // panel3
+ //
+ this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.panel3.Controls.Add(this.pictureBox2);
+ this.panel3.Controls.Add(this.textBox2);
+ this.panel3.Controls.Add(this.textBox5);
+ this.panel3.Controls.Add(this.button4);
+ this.panel3.Controls.Add(this.label16);
+ this.panel3.Controls.Add(this.label15);
+ this.panel3.Controls.Add(this.label12);
+ this.panel3.Controls.Add(this.label13);
+ this.panel3.Location = new System.Drawing.Point(1, 4);
+ this.panel3.Name = "panel3";
+ this.panel3.Size = new System.Drawing.Size(229, 69);
+ this.panel3.TabIndex = 62;
+ //
+ // panel4
+ //
+ this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.panel4.Controls.Add(this.button35);
+ this.panel4.Controls.Add(this.button34);
+ this.panel4.Controls.Add(this.button21);
+ this.panel4.Controls.Add(this.button8);
+ this.panel4.Controls.Add(this.button3);
+ this.panel4.Controls.Add(this.button25);
+ this.panel4.Location = new System.Drawing.Point(236, 41);
+ this.panel4.Name = "panel4";
+ this.panel4.Size = new System.Drawing.Size(501, 32);
+ this.panel4.TabIndex = 63;
+ //
+ // button35
+ //
+ this.button35.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button35.Location = new System.Drawing.Point(113, 3);
+ this.button35.Name = "button35";
+ this.button35.Size = new System.Drawing.Size(41, 20);
+ this.button35.TabIndex = 61;
+ this.button35.Text = "Studio";
+ this.button35.UseVisualStyleBackColor = true;
+ this.button35.Click += new System.EventHandler(this.button35_Click);
+ //
+ // MainForm
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.ClientSize = new System.Drawing.Size(739, 421);
+ this.Controls.Add(this.label25);
+ this.Controls.Add(this.label26);
+ this.Controls.Add(this.panel4);
+ this.Controls.Add(this.label27);
+ this.Controls.Add(this.panel3);
+ this.Controls.Add(this.panel2);
+ this.Controls.Add(this.panel1);
+ this.Controls.Add(this.label28);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "MainForm";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+ this.Text = "Novetus";
+ this.Closing += new System.ComponentModel.CancelEventHandler(this.MainFormClose);
+ this.Load += new System.EventHandler(this.MainFormLoad);
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
+ this.panel1.ResumeLayout(false);
+ this.panel2.ResumeLayout(false);
+ this.tabControl1.ResumeLayout(false);
+ this.tabPage1.ResumeLayout(false);
+ this.tabPage1.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
+ this.tabPage2.ResumeLayout(false);
+ this.tabPage2.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
+ this.tabPage3.ResumeLayout(false);
+ this.tabPage3.PerformLayout();
+ this.tabPage4.ResumeLayout(false);
+ this.tabPage4.PerformLayout();
+ this.tabPage6.ResumeLayout(false);
+ this.tabPage7.ResumeLayout(false);
+ this.tabPage8.ResumeLayout(false);
+ this.tabPage5.ResumeLayout(false);
+ this.panel5.ResumeLayout(false);
+ this.panel5.PerformLayout();
+ this.panel3.ResumeLayout(false);
+ this.panel3.PerformLayout();
+ this.panel4.ResumeLayout(false);
+ this.ResumeLayout(false);
+ }
+
+ private void Layout11()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
+ this.button25 = new System.Windows.Forms.Button();
+ this.button21 = new System.Windows.Forms.Button();
+ this.textBox5 = new System.Windows.Forms.TextBox();
+ this.label15 = new System.Windows.Forms.Label();
+ this.label13 = new System.Windows.Forms.Label();
+ this.textBox2 = new System.Windows.Forms.TextBox();
+ this.button4 = new System.Windows.Forms.Button();
+ this.pictureBox2 = new System.Windows.Forms.PictureBox();
+ this.button8 = new System.Windows.Forms.Button();
+ this.button3 = new System.Windows.Forms.Button();
+ this.label25 = new System.Windows.Forms.Label();
+ this.label26 = new System.Windows.Forms.Label();
+ this.label27 = new System.Windows.Forms.Label();
+ this.label28 = new System.Windows.Forms.Label();
+ this.label11 = new System.Windows.Forms.Label();
+ this.label12 = new System.Windows.Forms.Label();
+ this.label16 = new System.Windows.Forms.Label();
+ this.button20 = new System.Windows.Forms.Button();
+ this.button27 = new System.Windows.Forms.Button();
+ this.panel1 = new System.Windows.Forms.Panel();
+ this.button33 = new System.Windows.Forms.Button();
+ this.button32 = new System.Windows.Forms.Button();
+ this.button31 = new System.Windows.Forms.Button();
+ this.button30 = new System.Windows.Forms.Button();
+ this.button29 = new System.Windows.Forms.Button();
+ this.button28 = new System.Windows.Forms.Button();
+ this.button34 = new System.Windows.Forms.Button();
+ this.panel2 = new System.Windows.Forms.Panel();
+ this.tabControl1 = new TabControlWithoutHeader(2);
+ this.tabPage1 = new System.Windows.Forms.TabPage();
+ this.label24 = new System.Windows.Forms.Label();
+ this.label23 = new System.Windows.Forms.Label();
+ this.label2 = new System.Windows.Forms.Label();
+ this.label1 = new System.Windows.Forms.Label();
+ this.button7 = new System.Windows.Forms.Button();
+ this.button11 = new System.Windows.Forms.Button();
+ this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
+ this.button19 = new System.Windows.Forms.Button();
+ this.button10 = new System.Windows.Forms.Button();
+ this.label4 = new System.Windows.Forms.Label();
+ this.button1 = new System.Windows.Forms.Button();
+ this.textBox1 = new System.Windows.Forms.TextBox();
+ this.tabPage2 = new System.Windows.Forms.TabPage();
+ this.label19 = new System.Windows.Forms.Label();
+ this.textBox3 = new System.Windows.Forms.TextBox();
+ this.label17 = new System.Windows.Forms.Label();
+ this.checkBox4 = new System.Windows.Forms.CheckBox();
+ this.button23 = new System.Windows.Forms.Button();
+ this.button22 = new System.Windows.Forms.Button();
+ this.numericUpDown3 = new System.Windows.Forms.NumericUpDown();
+ this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
+ this.label29 = new System.Windows.Forms.Label();
+ this.label35 = new System.Windows.Forms.Label();
+ this.button18 = new System.Windows.Forms.Button();
+ this.button2 = new System.Windows.Forms.Button();
+ this.tabPage3 = new System.Windows.Forms.TabPage();
+ this.textBox6 = new System.Windows.Forms.TextBox();
+ this.label30 = new System.Windows.Forms.Label();
+ this.listBox2 = new System.Windows.Forms.ListBox();
+ this.tabPage4 = new System.Windows.Forms.TabPage();
+ this.textBox4 = new System.Windows.Forms.TextBox();
+ this.button24 = new System.Windows.Forms.Button();
+ this.treeView1 = new System.Windows.Forms.TreeView();
+ this.button6 = new System.Windows.Forms.Button();
+ this.tabPage6 = new System.Windows.Forms.TabPage();
+ this.button17 = new System.Windows.Forms.Button();
+ this.button16 = new System.Windows.Forms.Button();
+ this.button15 = new System.Windows.Forms.Button();
+ this.button14 = new System.Windows.Forms.Button();
+ this.button13 = new System.Windows.Forms.Button();
+ this.button12 = new System.Windows.Forms.Button();
+ this.label38 = new System.Windows.Forms.Label();
+ this.label39 = new System.Windows.Forms.Label();
+ this.label37 = new System.Windows.Forms.Label();
+ this.label36 = new System.Windows.Forms.Label();
+ this.listBox4 = new System.Windows.Forms.ListBox();
+ this.listBox3 = new System.Windows.Forms.ListBox();
+ this.label21 = new System.Windows.Forms.Label();
+ this.label14 = new System.Windows.Forms.Label();
+ this.tabPage7 = new System.Windows.Forms.TabPage();
+ this.richTextBox1 = new System.Windows.Forms.RichTextBox();
+ this.tabPage8 = new System.Windows.Forms.TabPage();
+ this.richTextBox2 = new System.Windows.Forms.RichTextBox();
+ this.tabPage5 = new System.Windows.Forms.TabPage();
+ this.panel5 = new System.Windows.Forms.Panel();
+ this.label3 = new System.Windows.Forms.Label();
+ this.comboBox2 = new System.Windows.Forms.ComboBox();
+ this.label31 = new System.Windows.Forms.Label();
+ this.comboBox1 = new System.Windows.Forms.ComboBox();
+ this.checkBox2 = new System.Windows.Forms.CheckBox();
+ this.checkBox6 = new System.Windows.Forms.CheckBox();
+ this.checkBox7 = new System.Windows.Forms.CheckBox();
+ this.label22 = new System.Windows.Forms.Label();
+ this.checkBox5 = new System.Windows.Forms.CheckBox();
+ this.checkBox3 = new System.Windows.Forms.CheckBox();
+ this.checkBox1 = new System.Windows.Forms.CheckBox();
+ this.button9 = new System.Windows.Forms.Button();
+ this.button26 = new System.Windows.Forms.Button();
+ this.button5 = new System.Windows.Forms.Button();
+ this.richTextBox3 = new System.Windows.Forms.RichTextBox();
+ this.label10 = new System.Windows.Forms.Label();
+ this.label18 = new System.Windows.Forms.Label();
+ this.label8 = new System.Windows.Forms.Label();
+ this.label7 = new System.Windows.Forms.Label();
+ this.panel3 = new System.Windows.Forms.Panel();
+ this.panel4 = new System.Windows.Forms.Panel();
+ this.button35 = new System.Windows.Forms.Button();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
+ this.panel1.SuspendLayout();
+ this.panel2.SuspendLayout();
+ this.tabControl1.SuspendLayout();
+ this.tabPage1.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
+ this.tabPage2.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
+ this.tabPage3.SuspendLayout();
+ this.tabPage4.SuspendLayout();
+ this.tabPage6.SuspendLayout();
+ this.tabPage7.SuspendLayout();
+ this.tabPage8.SuspendLayout();
+ this.tabPage5.SuspendLayout();
+ this.panel5.SuspendLayout();
+ this.panel3.SuspendLayout();
+ this.panel4.SuspendLayout();
+ this.SuspendLayout();
+
+ //
+ // tabControl1
+ //
+ this.tabControl1.Controls.Add(this.tabPage1);
+ this.tabControl1.Controls.Add(this.tabPage2);
+ this.tabControl1.Controls.Add(this.tabPage3);
+ this.tabControl1.Controls.Add(this.tabPage4);
+ this.tabControl1.Controls.Add(this.tabPage6);
+ this.tabControl1.Controls.Add(this.tabPage7);
+ this.tabControl1.Controls.Add(this.tabPage8);
+ this.tabControl1.Controls.Add(this.tabPage5);
+ this.tabControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.tabControl1.Location = new System.Drawing.Point(2, 79);
+ this.tabControl1.Multiline = true;
+ this.tabControl1.Name = "tabControl1";
+ this.tabControl1.SelectedIndex = 0;
+ this.tabControl1.ShowToolTips = true;
+ this.tabControl1.Size = new System.Drawing.Size(413, 284);
+ this.tabControl1.TabIndex = 1;
+ this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
+ //
+ // tabPage1
+ //
+ this.tabPage1.Controls.Add(this.label2);
+ this.tabPage1.Controls.Add(this.label1);
+ this.tabPage1.Controls.Add(this.button7);
+ this.tabPage1.Controls.Add(this.label31);
+ this.tabPage1.Controls.Add(this.button11);
+ this.tabPage1.Controls.Add(this.numericUpDown1);
+ this.tabPage1.Controls.Add(this.button19);
+ this.tabPage1.Controls.Add(this.button10);
+ this.tabPage1.Controls.Add(this.label4);
+ this.tabPage1.Controls.Add(this.button1);
+ this.tabPage1.Controls.Add(this.label3);
+ this.tabPage1.Controls.Add(this.textBox1);
+ this.tabPage1.Location = new System.Drawing.Point(4, 22);
+ this.tabPage1.Name = "tabPage1";
+ this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage1.RightToLeft = System.Windows.Forms.RightToLeft.No;
+ this.tabPage1.Size = new System.Drawing.Size(405, 258);
+ this.tabPage1.TabIndex = 0;
+ this.tabPage1.Text = "JOIN";
+ this.tabPage1.ToolTipText = "Join a server via IP Address";
+ this.tabPage1.UseVisualStyleBackColor = true;
+ //
+ // label2
+ //
+ this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label2.Location = new System.Drawing.Point(6, 200);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(393, 2);
+ this.label2.TabIndex = 50;
+ //
+ // label1
+ //
+ this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label1.Location = new System.Drawing.Point(6, 91);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(393, 2);
+ this.label1.TabIndex = 49;
+ //
+ // button7
+ //
+ this.button7.Location = new System.Drawing.Point(333, 47);
+ this.button7.Name = "button7";
+ this.button7.Size = new System.Drawing.Size(54, 31);
+ this.button7.TabIndex = 48;
+ this.button7.Text = "RESET";
+ this.button7.UseVisualStyleBackColor = true;
+ this.button7.Click += new System.EventHandler(this.Button7Click);
+ //
+ // label31
+ //
+ this.label31.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.label31.Location = new System.Drawing.Point(267, 5);
+ this.label31.Name = "label31";
+ this.label31.Size = new System.Drawing.Size(120, 13);
+ this.label31.TabIndex = 47;
+ this.label31.Text = "Server Port";
+ this.label31.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // button11
+ //
+ this.button11.Location = new System.Drawing.Point(267, 47);
+ this.button11.Name = "button11";
+ this.button11.Size = new System.Drawing.Size(60, 31);
+ this.button11.TabIndex = 46;
+ this.button11.Text = "SAVE";
+ this.button11.UseVisualStyleBackColor = true;
+ this.button11.Click += new System.EventHandler(this.Button11Click);
+ //
+ // numericUpDown1
+ //
+ this.numericUpDown1.Location = new System.Drawing.Point(267, 21);
+ this.numericUpDown1.Maximum = new decimal(new int[] {
+ 65535,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown1.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown1.Name = "numericUpDown1";
+ this.numericUpDown1.Size = new System.Drawing.Size(120, 20);
+ this.numericUpDown1.TabIndex = 18;
+ this.numericUpDown1.Value = new decimal(new int[] {
+ 53640,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown1.ValueChanged += new System.EventHandler(this.NumericUpDown1ValueChanged);
+ //
+ // button19
+ //
+ this.button19.Location = new System.Drawing.Point(207, 212);
+ this.button19.Name = "button19";
+ this.button19.Size = new System.Drawing.Size(192, 40);
+ this.button19.TabIndex = 16;
+ this.button19.Text = "PLAY SOLO";
+ this.button19.UseVisualStyleBackColor = true;
+ this.button19.Click += new System.EventHandler(this.Button19Click);
+ //
+ // button10
+ //
+ this.button10.Location = new System.Drawing.Point(64, 47);
+ this.button10.Name = "button10";
+ this.button10.Size = new System.Drawing.Size(137, 31);
+ this.button10.TabIndex = 15;
+ this.button10.Text = "SAVE SERVER";
+ this.button10.UseVisualStyleBackColor = true;
+ this.button10.Click += new System.EventHandler(this.Button10Click);
+ //
+ // label4
+ //
+ this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label4.ForeColor = System.Drawing.Color.Red;
+ this.label4.Location = new System.Drawing.Point(6, 93);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(393, 107);
+ this.label4.TabIndex = 4;
+ this.label4.Text = resources.GetString("label4.Text");
+ this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // button1
+ //
+ this.button1.Location = new System.Drawing.Point(6, 212);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(195, 40);
+ this.button1.TabIndex = 3;
+ this.button1.Text = "JOIN SERVER";
+ this.button1.UseVisualStyleBackColor = true;
+ this.button1.Click += new System.EventHandler(this.Button1Click);
+ //
+ // label3
+ //
+ this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.label3.Location = new System.Drawing.Point(16, 5);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(241, 13);
+ this.label3.TabIndex = 1;
+ this.label3.Text = "Server IP Address";
+ this.label3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // textBox1
+ //
+ this.textBox1.Location = new System.Drawing.Point(41, 21);
+ this.textBox1.Name = "textBox1";
+ this.textBox1.Size = new System.Drawing.Size(189, 20);
+ this.textBox1.TabIndex = 0;
+ this.textBox1.Text = "localhost";
+ this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.textBox1.TextChanged += new System.EventHandler(this.TextBox1TextChanged);
+ //
+ // tabPage2
+ //
+ this.tabPage2.Controls.Add(this.label19);
+ this.tabPage2.Controls.Add(this.textBox3);
+ this.tabPage2.Controls.Add(this.label17);
+ this.tabPage2.Controls.Add(this.checkBox4);
+ this.tabPage2.Controls.Add(this.button23);
+ this.tabPage2.Controls.Add(this.button22);
+ this.tabPage2.Controls.Add(this.numericUpDown3);
+ this.tabPage2.Controls.Add(this.numericUpDown2);
+ this.tabPage2.Controls.Add(this.label29);
+ this.tabPage2.Controls.Add(this.label35);
+ this.tabPage2.Controls.Add(this.button18);
+ this.tabPage2.Controls.Add(this.button2);
+ this.tabPage2.Location = new System.Drawing.Point(4, 22);
+ this.tabPage2.Name = "tabPage2";
+ this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage2.Size = new System.Drawing.Size(405, 258);
+ this.tabPage2.TabIndex = 1;
+ this.tabPage2.Text = "HOST";
+ this.tabPage2.ToolTipText = "Start a server for other players to play";
+ this.tabPage2.UseVisualStyleBackColor = true;
+ //
+ // label19
+ //
+ this.label19.AutoSize = true;
+ this.label19.Location = new System.Drawing.Point(6, 5);
+ this.label19.Name = "label19";
+ this.label19.Size = new System.Drawing.Size(129, 13);
+ this.label19.TabIndex = 60;
+ this.label19.Text = "SERVER INFORMATION";
+ //
+ // textBox3
+ //
+ this.textBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.textBox3.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.textBox3.Location = new System.Drawing.Point(6, 21);
+ this.textBox3.Multiline = true;
+ this.textBox3.Name = "textBox3";
+ this.textBox3.ReadOnly = true;
+ this.textBox3.ScrollBars = System.Windows.Forms.ScrollBars.Both;
+ this.textBox3.Size = new System.Drawing.Size(393, 117);
+ this.textBox3.TabIndex = 59;
+ //
+ // label17
+ //
+ this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label17.ForeColor = System.Drawing.Color.Red;
+ this.label17.Location = new System.Drawing.Point(10, 141);
+ this.label17.Name = "label17";
+ this.label17.Size = new System.Drawing.Size(382, 19);
+ this.label17.TabIndex = 58;
+ this.label17.Text = "NOTE: The webserver port is static and it cannot be changed. It is 40735.";
+ this.label17.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // checkBox4
+ //
+ this.checkBox4.Location = new System.Drawing.Point(205, 187);
+ this.checkBox4.Name = "checkBox4";
+ this.checkBox4.Size = new System.Drawing.Size(104, 17);
+ this.checkBox4.TabIndex = 57;
+ this.checkBox4.Text = "Toggle UPnP";
+ this.checkBox4.UseVisualStyleBackColor = true;
+ this.checkBox4.CheckedChanged += new System.EventHandler(this.CheckBox4CheckedChanged);
+ this.checkBox4.Click += new System.EventHandler(this.CheckBox4Click);
+ //
+ // button23
+ //
+ this.button23.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button23.Location = new System.Drawing.Point(63, 184);
+ this.button23.Name = "button23";
+ this.button23.Size = new System.Drawing.Size(66, 25);
+ this.button23.TabIndex = 51;
+ this.button23.Text = "SAVE";
+ this.button23.UseVisualStyleBackColor = true;
+ this.button23.Click += new System.EventHandler(this.Button23Click);
+ //
+ // button22
+ //
+ this.button22.Location = new System.Drawing.Point(135, 184);
+ this.button22.Name = "button22";
+ this.button22.Size = new System.Drawing.Size(63, 25);
+ this.button22.TabIndex = 50;
+ this.button22.Text = "RESET";
+ this.button22.UseVisualStyleBackColor = true;
+ this.button22.Click += new System.EventHandler(this.Button22Click);
+ //
+ // numericUpDown3
+ //
+ this.numericUpDown3.Location = new System.Drawing.Point(270, 161);
+ this.numericUpDown3.Maximum = new decimal(new int[] {
+ 256,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown3.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown3.Name = "numericUpDown3";
+ this.numericUpDown3.Size = new System.Drawing.Size(49, 20);
+ this.numericUpDown3.TabIndex = 49;
+ this.numericUpDown3.Value = new decimal(new int[] {
+ 12,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown3.ValueChanged += new System.EventHandler(this.NumericUpDown3ValueChanged);
+ //
+ // numericUpDown2
+ //
+ this.numericUpDown2.Location = new System.Drawing.Point(134, 161);
+ this.numericUpDown2.Maximum = new decimal(new int[] {
+ 65535,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown2.Minimum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown2.Name = "numericUpDown2";
+ this.numericUpDown2.Size = new System.Drawing.Size(63, 20);
+ this.numericUpDown2.TabIndex = 48;
+ this.numericUpDown2.Value = new decimal(new int[] {
+ 53640,
+ 0,
+ 0,
+ 0});
+ this.numericUpDown2.ValueChanged += new System.EventHandler(this.NumericUpDown2ValueChanged);
+ //
+ // label29
+ //
+ this.label29.Location = new System.Drawing.Point(205, 163);
+ this.label29.Name = "label29";
+ this.label29.Size = new System.Drawing.Size(60, 16);
+ this.label29.TabIndex = 46;
+ this.label29.Text = "Player Limit";
+ //
+ // label35
+ //
+ this.label35.Location = new System.Drawing.Point(63, 163);
+ this.label35.Name = "label35";
+ this.label35.Size = new System.Drawing.Size(65, 16);
+ this.label35.TabIndex = 44;
+ this.label35.Text = "Server Port";
+ this.label35.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // button18
+ //
+ this.button18.Location = new System.Drawing.Point(204, 215);
+ this.button18.Name = "button18";
+ this.button18.Size = new System.Drawing.Size(188, 36);
+ this.button18.TabIndex = 20;
+ this.button18.Text = "START SERVER WITH NO GRAPHICS";
+ this.button18.UseVisualStyleBackColor = true;
+ this.button18.Click += new System.EventHandler(this.Button18Click);
+ //
+ // button2
+ //
+ this.button2.Location = new System.Drawing.Point(10, 215);
+ this.button2.Name = "button2";
+ this.button2.Size = new System.Drawing.Size(188, 36);
+ this.button2.TabIndex = 2;
+ this.button2.Text = "START SERVER";
+ this.button2.UseVisualStyleBackColor = true;
+ this.button2.Click += new System.EventHandler(this.Button2Click);
+ //
+ // tabPage3
+ //
+ this.tabPage3.Controls.Add(this.textBox6);
+ this.tabPage3.Controls.Add(this.label30);
+ this.tabPage3.Controls.Add(this.listBox2);
+ this.tabPage3.Location = new System.Drawing.Point(4, 22);
+ this.tabPage3.Name = "tabPage3";
+ this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage3.Size = new System.Drawing.Size(405, 258);
+ this.tabPage3.TabIndex = 4;
+ this.tabPage3.Text = "CLIENTS";
+ this.tabPage3.ToolTipText = "Select a ROBLOX Client to load your game";
+ this.tabPage3.UseVisualStyleBackColor = true;
+ //
+ // textBox6
+ //
+ this.textBox6.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.textBox6.Location = new System.Drawing.Point(6, 179);
+ this.textBox6.Multiline = true;
+ this.textBox6.Name = "textBox6";
+ this.textBox6.ReadOnly = true;
+ this.textBox6.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
+ this.textBox6.Size = new System.Drawing.Size(393, 73);
+ this.textBox6.TabIndex = 4;
+ this.textBox6.Text = "textBox6";
+ //
+ // label30
+ //
+ this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label30.ForeColor = System.Drawing.Color.Red;
+ this.label30.Location = new System.Drawing.Point(6, 118);
+ this.label30.Name = "label30";
+ this.label30.Size = new System.Drawing.Size(393, 58);
+ this.label30.TabIndex = 3;
+ this.label30.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ this.label30.Visible = false;
+ //
+ // listBox2
+ //
+ this.listBox2.FormattingEnabled = true;
+ this.listBox2.Location = new System.Drawing.Point(6, 7);
+ this.listBox2.Name = "listBox2";
+ this.listBox2.Size = new System.Drawing.Size(393, 108);
+ this.listBox2.TabIndex = 2;
+ this.listBox2.SelectedIndexChanged += new System.EventHandler(this.ListBox2SelectedIndexChanged);
+ //
+ // tabPage4
+ //
+ this.tabPage4.Controls.Add(this.textBox4);
+ this.tabPage4.Controls.Add(this.button24);
+ this.tabPage4.Controls.Add(this.treeView1);
+ this.tabPage4.Controls.Add(this.button6);
+ this.tabPage4.Location = new System.Drawing.Point(4, 22);
+ this.tabPage4.Name = "tabPage4";
+ this.tabPage4.Size = new System.Drawing.Size(405, 258);
+ this.tabPage4.TabIndex = 10;
+ this.tabPage4.Text = "MAPS";
+ this.tabPage4.UseVisualStyleBackColor = true;
+ //
+ // textBox4
+ //
+ this.textBox4.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.textBox4.Location = new System.Drawing.Point(7, 143);
+ this.textBox4.Multiline = true;
+ this.textBox4.Name = "textBox4";
+ this.textBox4.ReadOnly = true;
+ this.textBox4.ScrollBars = System.Windows.Forms.ScrollBars.Both;
+ this.textBox4.Size = new System.Drawing.Size(392, 110);
+ this.textBox4.TabIndex = 67;
+ //
+ // button24
+ //
+ this.button24.Location = new System.Drawing.Point(7, 3);
+ this.button24.Name = "button24";
+ this.button24.Size = new System.Drawing.Size(188, 23);
+ this.button24.TabIndex = 59;
+ this.button24.Text = "Refresh List";
+ this.button24.UseVisualStyleBackColor = true;
+ this.button24.Click += new System.EventHandler(this.Button24Click);
+ //
+ // treeView1
+ //
+ this.treeView1.HideSelection = false;
+ this.treeView1.Location = new System.Drawing.Point(7, 29);
+ this.treeView1.Name = "treeView1";
+ this.treeView1.Size = new System.Drawing.Size(392, 108);
+ this.treeView1.TabIndex = 54;
+ this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeView1AfterSelect);
+ //
+ // button6
+ //
+ this.button6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button6.Location = new System.Drawing.Point(211, 3);
+ this.button6.Name = "button6";
+ this.button6.Size = new System.Drawing.Size(188, 23);
+ this.button6.TabIndex = 56;
+ this.button6.Text = "Open Maps Folder";
+ this.button6.UseVisualStyleBackColor = true;
+ this.button6.Click += new System.EventHandler(this.Button6Click);
+ //
+ // tabPage6
+ //
+ this.tabPage6.Controls.Add(this.button17);
+ this.tabPage6.Controls.Add(this.button16);
+ this.tabPage6.Controls.Add(this.button15);
+ this.tabPage6.Controls.Add(this.button14);
+ this.tabPage6.Controls.Add(this.button13);
+ this.tabPage6.Controls.Add(this.button12);
+ this.tabPage6.Controls.Add(this.label38);
+ this.tabPage6.Controls.Add(this.label39);
+ this.tabPage6.Controls.Add(this.label37);
+ this.tabPage6.Controls.Add(this.label36);
+ this.tabPage6.Controls.Add(this.listBox4);
+ this.tabPage6.Controls.Add(this.listBox3);
+ this.tabPage6.Controls.Add(this.label21);
+ this.tabPage6.Controls.Add(this.label14);
+ this.tabPage6.Location = new System.Drawing.Point(4, 22);
+ this.tabPage6.Name = "tabPage6";
+ this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage6.Size = new System.Drawing.Size(405, 258);
+ this.tabPage6.TabIndex = 6;
+ this.tabPage6.Text = "SAVED";
+ this.tabPage6.ToolTipText = "Lists all your saved servers and ports";
+ this.tabPage6.UseVisualStyleBackColor = true;
+ //
+ // button17
+ //
+ this.button17.Location = new System.Drawing.Point(213, 186);
+ this.button17.Name = "button17";
+ this.button17.Size = new System.Drawing.Size(54, 23);
+ this.button17.TabIndex = 13;
+ this.button17.Text = "Add";
+ this.button17.UseVisualStyleBackColor = true;
+ this.button17.Click += new System.EventHandler(this.Button17Click);
+ //
+ // button16
+ //
+ this.button16.Location = new System.Drawing.Point(6, 186);
+ this.button16.Name = "button16";
+ this.button16.Size = new System.Drawing.Size(60, 23);
+ this.button16.TabIndex = 12;
+ this.button16.Text = "Add";
+ this.button16.UseVisualStyleBackColor = true;
+ this.button16.Click += new System.EventHandler(this.Button16Click);
+ //
+ // button15
+ //
+ this.button15.Location = new System.Drawing.Point(339, 186);
+ this.button15.Name = "button15";
+ this.button15.Size = new System.Drawing.Size(60, 23);
+ this.button15.TabIndex = 11;
+ this.button15.Text = "Reset";
+ this.button15.UseVisualStyleBackColor = true;
+ this.button15.Click += new System.EventHandler(this.Button15Click);
+ //
+ // button14
+ //
+ this.button14.Location = new System.Drawing.Point(137, 186);
+ this.button14.Name = "button14";
+ this.button14.Size = new System.Drawing.Size(55, 23);
+ this.button14.TabIndex = 10;
+ this.button14.Text = "Reset";
+ this.button14.UseVisualStyleBackColor = true;
+ this.button14.Click += new System.EventHandler(this.Button14Click);
+ //
+ // button13
+ //
+ this.button13.Location = new System.Drawing.Point(273, 186);
+ this.button13.Name = "button13";
+ this.button13.Size = new System.Drawing.Size(60, 23);
+ this.button13.TabIndex = 9;
+ this.button13.Text = "Remove";
+ this.button13.UseVisualStyleBackColor = true;
+ this.button13.Click += new System.EventHandler(this.Button13Click);
+ //
+ // button12
+ //
+ this.button12.Location = new System.Drawing.Point(69, 186);
+ this.button12.Name = "button12";
+ this.button12.Size = new System.Drawing.Size(62, 23);
+ this.button12.TabIndex = 8;
+ this.button12.Text = "Remove";
+ this.button12.UseVisualStyleBackColor = true;
+ this.button12.Click += new System.EventHandler(this.Button12Click);
+ //
+ // label38
+ //
+ this.label38.Location = new System.Drawing.Point(213, 226);
+ this.label38.Name = "label38";
+ this.label38.Size = new System.Drawing.Size(120, 20);
+ this.label38.TabIndex = 7;
+ //
+ // label39
+ //
+ this.label39.Location = new System.Drawing.Point(213, 212);
+ this.label39.Name = "label39";
+ this.label39.Size = new System.Drawing.Size(149, 12);
+ this.label39.TabIndex = 6;
+ this.label39.Text = "CURRENT SERVER PORT:";
+ //
+ // label37
+ //
+ this.label37.Location = new System.Drawing.Point(6, 226);
+ this.label37.Name = "label37";
+ this.label37.Size = new System.Drawing.Size(120, 20);
+ this.label37.TabIndex = 5;
+ //
+ // label36
+ //
+ this.label36.Location = new System.Drawing.Point(6, 212);
+ this.label36.Name = "label36";
+ this.label36.Size = new System.Drawing.Size(136, 12);
+ this.label36.TabIndex = 4;
+ this.label36.Text = "CURRENT SERVER IP:";
+ //
+ // listBox4
+ //
+ this.listBox4.FormattingEnabled = true;
+ this.listBox4.Location = new System.Drawing.Point(213, 21);
+ this.listBox4.Name = "listBox4";
+ this.listBox4.Size = new System.Drawing.Size(186, 160);
+ this.listBox4.TabIndex = 3;
+ this.listBox4.SelectedIndexChanged += new System.EventHandler(this.ListBox4SelectedIndexChanged);
+ //
+ // listBox3
+ //
+ this.listBox3.FormattingEnabled = true;
+ this.listBox3.Location = new System.Drawing.Point(6, 21);
+ this.listBox3.Name = "listBox3";
+ this.listBox3.Size = new System.Drawing.Size(186, 160);
+ this.listBox3.TabIndex = 2;
+ this.listBox3.SelectedIndexChanged += new System.EventHandler(this.ListBox3SelectedIndexChanged);
+ //
+ // label21
+ //
+ this.label21.Location = new System.Drawing.Point(282, 3);
+ this.label21.Name = "label21";
+ this.label21.Size = new System.Drawing.Size(59, 15);
+ this.label21.TabIndex = 1;
+ this.label21.Text = "PORTS";
+ //
+ // label14
+ //
+ this.label14.Location = new System.Drawing.Point(67, 3);
+ this.label14.Name = "label14";
+ this.label14.Size = new System.Drawing.Size(59, 15);
+ this.label14.TabIndex = 0;
+ this.label14.Text = "SERVERS";
+ //
+ // tabPage7
+ //
+ this.tabPage7.BackColor = System.Drawing.SystemColors.ControlText;
+ this.tabPage7.Controls.Add(this.richTextBox1);
+ this.tabPage7.Location = new System.Drawing.Point(4, 22);
+ this.tabPage7.Name = "tabPage7";
+ this.tabPage7.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage7.Size = new System.Drawing.Size(405, 258);
+ this.tabPage7.TabIndex = 7;
+ this.tabPage7.Text = "CMD";
+ //
+ // richTextBox1
+ //
+ this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.richTextBox1.BackColor = System.Drawing.SystemColors.ControlText;
+ this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox1.ForeColor = System.Drawing.Color.White;
+ this.richTextBox1.Location = new System.Drawing.Point(3, 3);
+ this.richTextBox1.Name = "richTextBox1";
+ this.richTextBox1.Size = new System.Drawing.Size(399, 255);
+ this.richTextBox1.TabIndex = 2;
+ this.richTextBox1.Text = "";
+ this.richTextBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.richTextBox1_KeyDown);
+ //
+ // tabPage8
+ //
+ this.tabPage8.Controls.Add(this.richTextBox2);
+ this.tabPage8.Location = new System.Drawing.Point(4, 22);
+ this.tabPage8.Name = "tabPage8";
+ this.tabPage8.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPage8.Size = new System.Drawing.Size(405, 258);
+ this.tabPage8.TabIndex = 8;
+ this.tabPage8.Text = "UPDATES";
+ this.tabPage8.UseVisualStyleBackColor = true;
+ //
+ // richTextBox2
+ //
+ this.richTextBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.richTextBox2.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.richTextBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox2.Location = new System.Drawing.Point(3, 3);
+ this.richTextBox2.Name = "richTextBox2";
+ this.richTextBox2.ReadOnly = true;
+ this.richTextBox2.Size = new System.Drawing.Size(399, 252);
+ this.richTextBox2.TabIndex = 2;
+ this.richTextBox2.Text = "";
+ //
+ // tabPage5
+ //
+ this.tabPage5.Controls.Add(this.checkBox2);
+ this.tabPage5.Controls.Add(this.label18);
+ this.tabPage5.Controls.Add(this.button26);
+ this.tabPage5.Controls.Add(this.label7);
+ this.tabPage5.Controls.Add(this.label10);
+ this.tabPage5.Controls.Add(this.label8);
+ this.tabPage5.Controls.Add(this.button9);
+ this.tabPage5.Controls.Add(this.checkBox3);
+ this.tabPage5.Controls.Add(this.checkBox1);
+ this.tabPage5.Controls.Add(this.button5);
+ this.tabPage5.Controls.Add(this.richTextBox3);
+ this.tabPage5.Location = new System.Drawing.Point(4, 22);
+ this.tabPage5.Name = "tabPage5";
+ this.tabPage5.Size = new System.Drawing.Size(405, 258);
+ this.tabPage5.TabIndex = 9;
+ this.tabPage5.Text = "SETTINGS";
+ this.tabPage5.UseVisualStyleBackColor = true;
+ //
+ // checkBox2
+ //
+ this.checkBox2.AutoSize = true;
+ this.checkBox2.Checked = true;
+ this.checkBox2.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.checkBox2.Location = new System.Drawing.Point(176, 8);
+ this.checkBox2.Name = "checkBox2";
+ this.checkBox2.Size = new System.Drawing.Size(135, 17);
+ this.checkBox2.TabIndex = 59;
+ this.checkBox2.Text = "Discord Rich Presence";
+ this.checkBox2.UseVisualStyleBackColor = true;
+ this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
+ //
+ // label18
+ //
+ this.label18.Location = new System.Drawing.Point(113, 237);
+ this.label18.Name = "label18";
+ this.label18.Size = new System.Drawing.Size(155, 16);
+ this.label18.TabIndex = 58;
+ this.label18.Text = "qwertyuiopasdfghjklz";
+ this.label18.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // button26
+ //
+ this.button26.Location = new System.Drawing.Point(176, 29);
+ this.button26.Name = "button26";
+ this.button26.Size = new System.Drawing.Size(77, 21);
+ this.button26.TabIndex = 57;
+ this.button26.Text = "Clear Cache";
+ this.button26.UseVisualStyleBackColor = true;
+ this.button26.Click += new System.EventHandler(this.button26_Click);
+ //
+ // label7
+ //
+ this.label7.Location = new System.Drawing.Point(274, 237);
+ this.label7.Name = "label7";
+ this.label7.Size = new System.Drawing.Size(121, 16);
+ this.label7.TabIndex = 54;
+ this.label7.Text = "PROJECT STARLIGHT";
+ //
+ // label10
+ //
+ this.label10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label10.Location = new System.Drawing.Point(6, 60);
+ this.label10.Name = "label10";
+ this.label10.Size = new System.Drawing.Size(389, 2);
+ this.label10.TabIndex = 53;
+ //
+ // label8
+ //
+ this.label8.Location = new System.Drawing.Point(8, 237);
+ this.label8.Name = "label8";
+ this.label8.Size = new System.Drawing.Size(99, 16);
+ this.label8.TabIndex = 48;
+ this.label8.Text = "0.13333337";
+ this.label8.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // label9
+ //
+ this.richTextBox3.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.richTextBox3.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.richTextBox3.Location = new System.Drawing.Point(6, 70);
+ this.richTextBox3.Name = "richTextBox3";
+ this.richTextBox3.Size = new System.Drawing.Size(389, 155);
+ this.richTextBox3.ReadOnly = true;
+ this.richTextBox3.TabIndex = 60;
+ this.richTextBox3.Text = "credits text";
+ //
+ // button9
+ //
+ this.button9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button9.Location = new System.Drawing.Point(91, 4);
+ this.button9.Name = "button9";
+ this.button9.Size = new System.Drawing.Size(69, 46);
+ this.button9.TabIndex = 37;
+ this.button9.Text = "Reset CFG";
+ this.button9.UseVisualStyleBackColor = true;
+ this.button9.Click += new System.EventHandler(this.Button9Click);
+ //
+ // checkBox3
+ //
+ this.checkBox3.Location = new System.Drawing.Point(317, 7);
+ this.checkBox3.Name = "checkBox3";
+ this.checkBox3.Size = new System.Drawing.Size(77, 19);
+ this.checkBox3.TabIndex = 22;
+ this.checkBox3.Text = "Local Play";
+ this.checkBox3.UseVisualStyleBackColor = true;
+ this.checkBox3.CheckedChanged += new System.EventHandler(this.CheckBox3CheckedChanged);
+ //
+ // checkBox1
+ //
+ this.checkBox1.Checked = true;
+ this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.checkBox1.Location = new System.Drawing.Point(270, 32);
+ this.checkBox1.Name = "checkBox1";
+ this.checkBox1.Size = new System.Drawing.Size(124, 17);
+ this.checkBox1.TabIndex = 5;
+ this.checkBox1.Text = "Minimize on Launch";
+ this.checkBox1.UseCompatibleTextRendering = true;
+ this.checkBox1.UseVisualStyleBackColor = true;
+ this.checkBox1.CheckedChanged += new System.EventHandler(this.CheckBox1CheckedChanged);
+ //
+ // button5
+ //
+ this.button5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button5.Location = new System.Drawing.Point(14, 4);
+ this.button5.Name = "button5";
+ this.button5.Size = new System.Drawing.Size(69, 46);
+ this.button5.TabIndex = 10;
+ this.button5.Text = "Save CFG";
+ this.button5.UseVisualStyleBackColor = true;
+ this.button5.Click += new System.EventHandler(this.Button5Click);
+ //
+ // button25
+ //
+ this.button25.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button25.Location = new System.Drawing.Point(315, 31);
+ this.button25.Name = "button25";
+ this.button25.Size = new System.Drawing.Size(63, 20);
+ this.button25.TabIndex = 56;
+ this.button25.Text = "Install Mod";
+ this.button25.UseVisualStyleBackColor = true;
+ this.button25.Click += new System.EventHandler(this.button25_Click);
+ //
+ // button21
+ //
+ this.button21.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button21.Location = new System.Drawing.Point(380, 31);
+ this.button21.Name = "button21";
+ this.button21.Size = new System.Drawing.Size(35, 20);
+ this.button21.TabIndex = 44;
+ this.button21.Text = "UA";
+ this.button21.UseVisualStyleBackColor = true;
+ this.button21.Click += new System.EventHandler(this.Button21Click);
+ //
+ // textBox5
+ //
+ this.textBox5.Location = new System.Drawing.Point(95, 53);
+ this.textBox5.Multiline = true;
+ this.textBox5.Name = "textBox5";
+ this.textBox5.Size = new System.Drawing.Size(71, 18);
+ this.textBox5.TabIndex = 20;
+ this.textBox5.Text = "0";
+ this.textBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.textBox5.TextChanged += new System.EventHandler(this.TextBox5TextChanged);
+ //
+ // label15
+ //
+ this.label15.Location = new System.Drawing.Point(55, 34);
+ this.label15.Name = "label15";
+ this.label15.Size = new System.Drawing.Size(40, 16);
+ this.label15.TabIndex = 12;
+ this.label15.Text = "Name:";
+ //
+ // label13
+ //
+ this.label13.Location = new System.Drawing.Point(55, 55);
+ this.label13.Name = "label13";
+ this.label13.Size = new System.Drawing.Size(34, 13);
+ this.label13.TabIndex = 7;
+ this.label13.Text = "ID:";
+ //
+ // textBox2
+ //
+ this.textBox2.Location = new System.Drawing.Point(95, 31);
+ this.textBox2.Name = "textBox2";
+ this.textBox2.Size = new System.Drawing.Size(121, 20);
+ this.textBox2.TabIndex = 11;
+ this.textBox2.Text = "Player";
+ this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.textBox2.TextChanged += new System.EventHandler(this.TextBox2TextChanged);
+ //
+ // button4
+ //
+ this.button4.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button4.Location = new System.Drawing.Point(169, 52);
+ this.button4.Name = "button4";
+ this.button4.Size = new System.Drawing.Size(48, 20);
+ this.button4.TabIndex = 9;
+ this.button4.Text = "Regen";
+ this.button4.UseVisualStyleBackColor = true;
+ this.button4.Click += new System.EventHandler(this.Button4Click);
+ //
+ // pictureBox2
+ //
+ this.pictureBox2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox2.BackgroundImage")));
+ this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.pictureBox2.Location = new System.Drawing.Point(6, 12);
+ this.pictureBox2.Name = "pictureBox2";
+ this.pictureBox2.Size = new System.Drawing.Size(43, 41);
+ this.pictureBox2.TabIndex = 7;
+ this.pictureBox2.TabStop = false;
+ //
+ // button8
+ //
+ this.button8.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button8.Location = new System.Drawing.Point(223, 31);
+ this.button8.Name = "button8";
+ this.button8.Size = new System.Drawing.Size(47, 20);
+ this.button8.TabIndex = 35;
+ this.button8.Text = "Avatar";
+ this.button8.UseVisualStyleBackColor = true;
+ this.button8.Click += new System.EventHandler(this.Button8Click);
+ //
+ // button3
+ //
+ this.button3.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.button3.Location = new System.Drawing.Point(271, 31);
+ this.button3.Name = "button3";
+ this.button3.Size = new System.Drawing.Size(43, 20);
+ this.button3.TabIndex = 6;
+ this.button3.Text = "Studio";
+ this.button3.UseVisualStyleBackColor = true;
+ this.button3.Click += new System.EventHandler(this.Button3Click);
+ //
+ // label25
+ //
+ this.label25.Location = new System.Drawing.Point(55, 4);
+ this.label25.Name = "label25";
+ this.label25.Size = new System.Drawing.Size(109, 14);
+ this.label25.TabIndex = 16;
+ this.label25.Text = "SELECTED CLIENT:";
+ //
+ // label26
+ //
+ this.label26.Location = new System.Drawing.Point(160, 4);
+ this.label26.Name = "label26";
+ this.label26.Size = new System.Drawing.Size(245, 13);
+ this.label26.TabIndex = 17;
+ this.label26.Text = "2009E";
+ //
+ // label27
+ //
+ this.label27.Location = new System.Drawing.Point(55, 18);
+ this.label27.Name = "label27";
+ this.label27.Size = new System.Drawing.Size(95, 12);
+ this.label27.TabIndex = 18;
+ this.label27.Text = "SELECTED MAP:";
+ //
+ // label28
+ //
+ this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label28.Location = new System.Drawing.Point(145, 18);
+ this.label28.Name = "label28";
+ this.label28.Size = new System.Drawing.Size(260, 12);
+ this.label28.TabIndex = 19;
+ this.label28.Text = "Baseplate.rbxl";
+ //
+ // label11
+ //
+ this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label11.Location = new System.Drawing.Point(4, 51);
+ this.label11.Name = "label11";
+ this.label11.Size = new System.Drawing.Size(47, 25);
+ this.label11.TabIndex = 50;
+ this.label11.Text = "v1.0";
+ this.label11.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // label12
+ //
+ this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.label12.Location = new System.Drawing.Point(223, 51);
+ this.label12.Name = "label12";
+ this.label12.Size = new System.Drawing.Size(192, 21);
+ this.label12.TabIndex = 0;
+ this.label12.Text = "Novetus!";
+ this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // label16
+ //
+ this.label16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
+ this.label16.Location = new System.Drawing.Point(54, 6);
+ this.label16.Name = "label16";
+ this.label16.Size = new System.Drawing.Size(2, 65);
+ this.label16.TabIndex = 51;
+ //
+ // MainForm
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.SystemColors.ControlLightLight;
+ this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.ClientSize = new System.Drawing.Size(417, 366);
+ this.Controls.Add(this.label16);
+ this.Controls.Add(this.label12);
+ this.Controls.Add(this.label28);
+ this.Controls.Add(this.button25);
+ this.Controls.Add(this.label11);
+ this.Controls.Add(this.pictureBox2);
+ this.Controls.Add(this.button3);
+ this.Controls.Add(this.button8);
+ this.Controls.Add(this.button21);
+ this.Controls.Add(this.label13);
+ this.Controls.Add(this.label15);
+ this.Controls.Add(this.button4);
+ this.Controls.Add(this.textBox5);
+ this.Controls.Add(this.label27);
+ this.Controls.Add(this.label26);
+ this.Controls.Add(this.label25);
+ this.Controls.Add(this.textBox2);
+ this.Controls.Add(this.tabControl1);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "MainForm";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+ this.Text = "Novetus";
+ this.Closing += new System.ComponentModel.CancelEventHandler(this.MainFormClose);
+ this.Load += new System.EventHandler(this.MainFormLoad);
+ this.tabControl1.ResumeLayout(false);
+ this.tabPage1.ResumeLayout(false);
+ this.tabPage1.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
+ this.tabPage2.ResumeLayout(false);
+ this.tabPage2.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
+ this.tabPage3.ResumeLayout(false);
+ this.tabPage3.PerformLayout();
+ this.tabPage4.ResumeLayout(false);
+ this.tabPage4.PerformLayout();
+ this.tabPage6.ResumeLayout(false);
+ this.tabPage7.ResumeLayout(false);
+ this.tabPage8.ResumeLayout(false);
+ this.tabPage5.ResumeLayout(false);
+ this.tabPage5.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
+ this.ResumeLayout(false);
+ this.PerformLayout();
+ }
+
private System.Windows.Forms.Label label17;
private System.Windows.Forms.CheckBox checkBox4;
private System.Windows.Forms.Button button6;
diff --git a/NovetusLauncher/NovetusLauncher/MainForm.cs b/NovetusLauncher/NovetusLauncher/MainForm.cs
index 5c24020..0029bff 100644
--- a/NovetusLauncher/NovetusLauncher/MainForm.cs
+++ b/NovetusLauncher/NovetusLauncher/MainForm.cs
@@ -32,10 +32,23 @@ namespace NovetusLauncher
//
// The InitializeComponent() call is required for Windows Forms designer support.
//
- InitializeComponent();
- Size = new Size(745, 377);
- panel2.Size = new Size(646, 272);
+#if RETAIL
+ int layout = 1;
+
+ if (layout == 1)
+ {
+ InitializeComponent(1);
+ Size = new Size(745, 377);
+ panel2.Size = new Size(646, 272);
+ }
+ if (layout == 2)
+ {
+ InitializeComponent(2);
+ Size = new Size(427, 395);
+ panel2.Visible = false;
+ }
+#endif
//
// TODO: Add constructor code after the InitializeComponent() call.