diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.Designer.cs b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.Designer.cs index 2e8a872..2e23e18 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.Designer.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.Designer.cs @@ -202,10 +202,12 @@ namespace RBXLegacyLauncher // // radioButton4 // + this.radioButton4.Checked = true; this.radioButton4.Location = new System.Drawing.Point(240, 35); this.radioButton4.Name = "radioButton4"; this.radioButton4.Size = new System.Drawing.Size(102, 16); this.radioButton4.TabIndex = 37; + this.radioButton4.TabStop = true; this.radioButton4.Text = "No Icon (NBC)"; this.radioButton4.UseVisualStyleBackColor = true; this.radioButton4.CheckedChanged += new System.EventHandler(this.RadioButton4CheckedChanged); diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.cs b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.cs index 91b7302..1257c40 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/CharacterCustomization.cs @@ -134,21 +134,34 @@ namespace RBXLegacyLauncher textBox1.Text = GlobalVars.Custom_TShirt.ToString(); textBox2.Text = GlobalVars.Custom_Shirt.ToString(); textBox3.Text = GlobalVars.Custom_Pants.ToString(); - if (GlobalVars.Custom_IconType.Equals("BC")) + if (GlobalVars.AdminMode == false) { - radioButton1.Checked = true; - } - else if (GlobalVars.Custom_IconType.Equals("TBC")) - { - radioButton2.Checked = true; - } - else if (GlobalVars.Custom_IconType.Equals("OBC")) - { - radioButton3.Checked = true; - } - else if (GlobalVars.Custom_IconType.Equals("NBC")) + if (GlobalVars.Custom_IconType.Equals("BC")) + { + radioButton1.Checked = true; + } + else if (GlobalVars.Custom_IconType.Equals("TBC")) + { + radioButton2.Checked = true; + } + else if (GlobalVars.Custom_IconType.Equals("OBC")) + { + radioButton3.Checked = true; + } + else if (GlobalVars.Custom_IconType.Equals("NBC")) + { + radioButton4.Checked = true; + } + else { + radioButton1.Checked = false; + radioButton1.Enabled = false; + radioButton2.Checked = false; + radioButton2.Enabled = false; + radioButton3.Checked = false; + radioButton3.Enabled = false; radioButton4.Checked = true; + radioButton4.Enabled = false; } // pages if (GlobalVars.SelectedClientVersion >= 6) @@ -163,6 +176,7 @@ namespace RBXLegacyLauncher LArmButton4.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftArmColor); RLegButton5.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_RightLegColor); LLegButton6.BackColor = ConvertStringtoColor(GlobalVars.ColorMenu_LeftLegColor); + } void tabControl1_SelectedIndexChanged(object sender, EventArgs e) @@ -1648,5 +1662,10 @@ namespace RBXLegacyLauncher { } + + void Label8Click(object sender, EventArgs e) + { + + } } }