diff --git a/Novetus/NovetusCore/CharCustom/Forms/Compact/CharacterCustomizationCompact.Designer.cs b/Novetus/NovetusCore/CharCustom/Forms/Compact/CharacterCustomizationCompact.Designer.cs index a79fe15..a104f12 100644 --- a/Novetus/NovetusCore/CharCustom/Forms/Compact/CharacterCustomizationCompact.Designer.cs +++ b/Novetus/NovetusCore/CharCustom/Forms/Compact/CharacterCustomizationCompact.Designer.cs @@ -131,6 +131,7 @@ partial class CharacterCustomizationCompact this.pictureBox9 = new System.Windows.Forms.PictureBox(); this.listBox9 = new System.Windows.Forms.ListBox(); this.tabPage7 = new System.Windows.Forms.TabPage(); + this.button7 = new System.Windows.Forms.Button(); this.button71 = new System.Windows.Forms.Button(); this.label8 = new System.Windows.Forms.Label(); this.pictureBox10 = new System.Windows.Forms.PictureBox(); @@ -146,7 +147,6 @@ partial class CharacterCustomizationCompact this.button54 = new System.Windows.Forms.Button(); this.button53 = new System.Windows.Forms.Button(); this.button52 = new System.Windows.Forms.Button(); - this.button7 = new System.Windows.Forms.Button(); this.tabControl1.SuspendLayout(); this.tabPage1.SuspendLayout(); this.groupBox1.SuspendLayout(); @@ -233,12 +233,11 @@ partial class CharacterCustomizationCompact // 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, 108); + this.label30.Location = new System.Drawing.Point(6, 133); this.label30.Name = "label30"; - this.label30.Size = new System.Drawing.Size(271, 40); + this.label30.Size = new System.Drawing.Size(271, 15); this.label30.TabIndex = 4; - this.label30.Text = "Some colors may be incompatible with earlier clients. Incompatible colors will sh" + - "ow up as grey in-game. "; + this.label30.Text = "Incompatible colors will show up as grey in-game. "; this.label30.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // listView1 @@ -246,7 +245,7 @@ partial class CharacterCustomizationCompact this.listView1.HideSelection = false; this.listView1.Location = new System.Drawing.Point(6, 15); this.listView1.Name = "listView1"; - this.listView1.Size = new System.Drawing.Size(271, 90); + this.listView1.Size = new System.Drawing.Size(271, 115); this.listView1.TabIndex = 0; this.listView1.UseCompatibleStateImageBehavior = false; this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged); @@ -1169,6 +1168,16 @@ partial class CharacterCustomizationCompact this.tabPage7.Text = "OTHER"; this.tabPage7.UseVisualStyleBackColor = true; // + // button7 + // + this.button7.Location = new System.Drawing.Point(365, 70); + this.button7.Name = "button7"; + this.button7.Size = new System.Drawing.Size(99, 31); + this.button7.TabIndex = 14; + this.button7.Text = "Load Outfit"; + this.button7.UseVisualStyleBackColor = true; + this.button7.Click += new System.EventHandler(this.button7_Click); + // // button71 // this.button71.Location = new System.Drawing.Point(365, 37); @@ -1323,16 +1332,6 @@ partial class CharacterCustomizationCompact this.button52.UseVisualStyleBackColor = true; this.button52.Click += new System.EventHandler(this.Button52Click); // - // button7 - // - this.button7.Location = new System.Drawing.Point(365, 70); - this.button7.Name = "button7"; - this.button7.Size = new System.Drawing.Size(99, 31); - this.button7.TabIndex = 14; - this.button7.Text = "Load Outfit"; - this.button7.UseVisualStyleBackColor = true; - this.button7.Click += new System.EventHandler(this.button7_Click); - // // CharacterCustomizationCompact // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); diff --git a/Novetus/NovetusCore/CharCustom/PartColors.cs b/Novetus/NovetusCore/Classes/PartColors.cs similarity index 90% rename from Novetus/NovetusCore/CharCustom/PartColors.cs rename to Novetus/NovetusCore/Classes/PartColors.cs index f36c10b..4a7c1dd 100644 --- a/Novetus/NovetusCore/CharCustom/PartColors.cs +++ b/Novetus/NovetusCore/Classes/PartColors.cs @@ -3,6 +3,7 @@ using System; using System.Drawing; using System.IO; using System.Linq; +using System.Text.RegularExpressions; using System.Xml; using System.Xml.Serialization; #endregion @@ -39,7 +40,8 @@ public class PartColorLoader for (int i = 0; i < colors.ColorList.Length; i++) { - string[] rgbValues = colors.ColorList[i].ColorRGB.Replace(" ", "").Split(','); + string colorFixed = Regex.Replace(colors.ColorList[i].ColorRGB, @"[\[\]\{\}\(\)\<\> ]", ""); + string[] rgbValues = colorFixed.Split(','); colors.ColorList[i].ColorObject = Color.FromArgb(Convert.ToInt32(rgbValues[0]), Convert.ToInt32(rgbValues[1]), Convert.ToInt32(rgbValues[2])); } diff --git a/Novetus/NovetusCore/NovetusCore.projitems b/Novetus/NovetusCore/NovetusCore.projitems index 1aa561b..de00ed7 100644 --- a/Novetus/NovetusCore/NovetusCore.projitems +++ b/Novetus/NovetusCore/NovetusCore.projitems @@ -9,7 +9,7 @@ NovetusCore - + diff --git a/Novetus/NovetusLauncher/Forms/SDK/ItemCreationSDKColorMenu.cs b/Novetus/NovetusLauncher/Forms/SDK/ItemCreationSDKColorMenu.cs index 9239b89..f8b9fb0 100644 --- a/Novetus/NovetusLauncher/Forms/SDK/ItemCreationSDKColorMenu.cs +++ b/Novetus/NovetusLauncher/Forms/SDK/ItemCreationSDKColorMenu.cs @@ -70,7 +70,9 @@ public partial class ItemCreationSDKColorMenu : Form } parent.partColorID = Convert.ToInt32(colorMenu.Items[selectedIndex].Tag); +#pragma warning disable CS1690 // Accessing a member on a field of a marshal-by-reference class may cause a runtime exception parent.partColorLabel.Text = parent.partColorID.ToString(); +#pragma warning restore CS1690 // Accessing a member on a field of a marshal-by-reference class may cause a runtime exception Close(); } diff --git a/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.Designer.cs b/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.Designer.cs index 5151b18..a9b9f9f 100644 --- a/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.Designer.cs +++ b/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.Designer.cs @@ -33,11 +33,13 @@ this.contentProvidersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.partColorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.reloadCurrentFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.insetRowAtSelectedRowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.deleteSelectedRowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.XMLView = new System.Windows.Forms.DataGridView(); - this.reloadCurrentFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SearchBar = new System.Windows.Forms.TextBox(); + this.SearchButton = new System.Windows.Forms.Button(); this.XMLStrip.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.XMLView)).BeginInit(); this.SuspendLayout(); @@ -75,7 +77,7 @@ this.contentProvidersToolStripMenuItem, this.partColorsToolStripMenuItem}); this.loadToolStripMenuItem.Name = "loadToolStripMenuItem"; - this.loadToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.loadToolStripMenuItem.Size = new System.Drawing.Size(174, 22); this.loadToolStripMenuItem.Text = "Load"; // // contentProvidersToolStripMenuItem @@ -95,10 +97,17 @@ // saveToolStripMenuItem // this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; - this.saveToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.saveToolStripMenuItem.Size = new System.Drawing.Size(174, 22); this.saveToolStripMenuItem.Text = "Save"; this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click); // + // reloadCurrentFileToolStripMenuItem + // + this.reloadCurrentFileToolStripMenuItem.Name = "reloadCurrentFileToolStripMenuItem"; + this.reloadCurrentFileToolStripMenuItem.Size = new System.Drawing.Size(174, 22); + this.reloadCurrentFileToolStripMenuItem.Text = "Reload Current File"; + this.reloadCurrentFileToolStripMenuItem.Click += new System.EventHandler(this.reloadCurrentFileToolStripMenuItem_Click); + // // editToolStripMenuItem // this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { @@ -139,12 +148,24 @@ this.XMLView.TabIndex = 30; this.XMLView.MouseClick += new System.Windows.Forms.MouseEventHandler(this.XMLView_MouseClick); // - // reloadCurrentFileToolStripMenuItem + // SearchBar // - this.reloadCurrentFileToolStripMenuItem.Name = "reloadCurrentFileToolStripMenuItem"; - this.reloadCurrentFileToolStripMenuItem.Size = new System.Drawing.Size(180, 22); - this.reloadCurrentFileToolStripMenuItem.Text = "Reload Current File"; - this.reloadCurrentFileToolStripMenuItem.Click += new System.EventHandler(this.reloadCurrentFileToolStripMenuItem_Click); + this.SearchBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SearchBar.Location = new System.Drawing.Point(567, 2); + this.SearchBar.Name = "SearchBar"; + this.SearchBar.Size = new System.Drawing.Size(196, 20); + this.SearchBar.TabIndex = 31; + // + // SearchButton + // + this.SearchButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SearchButton.Image = ((System.Drawing.Image)(resources.GetObject("SearchButton.Image"))); + this.SearchButton.Location = new System.Drawing.Point(767, 2); + this.SearchButton.Name = "SearchButton"; + this.SearchButton.Size = new System.Drawing.Size(31, 20); + this.SearchButton.TabIndex = 32; + this.SearchButton.UseVisualStyleBackColor = true; + this.SearchButton.Click += new System.EventHandler(this.SearchButton_Click); // // XMLContentEditor // @@ -152,6 +173,8 @@ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ControlLightLight; this.ClientSize = new System.Drawing.Size(800, 450); + this.Controls.Add(this.SearchButton); + this.Controls.Add(this.SearchBar); this.Controls.Add(this.XMLView); this.Controls.Add(this.XMLStrip); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); @@ -163,6 +186,7 @@ this.XMLStrip.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.XMLView)).EndInit(); this.ResumeLayout(false); + this.PerformLayout(); } @@ -178,4 +202,6 @@ private System.Windows.Forms.ToolStripMenuItem insetRowAtSelectedRowToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem deleteSelectedRowToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem reloadCurrentFileToolStripMenuItem; + private System.Windows.Forms.TextBox SearchBar; + private System.Windows.Forms.Button SearchButton; } \ No newline at end of file diff --git a/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.cs b/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.cs index 40e4bc6..27ed4f5 100644 --- a/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.cs +++ b/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.cs @@ -108,7 +108,7 @@ public partial class XMLContentEditor : Form switch (res) { case DialogResult.Yes: - SaveXML(); + SaveXML(true); break; case DialogResult.Cancel: e.Cancel = true; @@ -118,6 +118,38 @@ public partial class XMLContentEditor : Form break; } } + + //https://stackoverflow.com/questions/24083959/using-linq-to-get-datagridview-row-index-where-first-column-has-specific-value + private void SearchButton_Click(object sender, EventArgs e) + { + string searchValue = SearchBar.Text; + XMLView.ClearSelection(); + XMLView.SelectionMode = DataGridViewSelectionMode.FullRowSelect; + bool valueResult = false; + try + { + int index = 0; + var item = XMLView.Rows.Cast().FirstOrDefault(r => r.Cells[0].Value.ToString().Contains(searchValue, StringComparison.InvariantCultureIgnoreCase)); + if (item != null) + { + index = item.Index; + XMLView.Rows[index].Selected = true; + XMLView.FirstDisplayedScrollingRowIndex = index; + valueResult = true; + } + } + catch (Exception ex) + { + GlobalFuncs.LogExceptions(ex); + } + finally + { + if (!valueResult) + { + MessageBox.Show("The item, '" + SearchBar.Text + "', was not found. Please try another term.", "XML Content Editor - Item Not Found"); + } + } + } #endregion #region Functions @@ -205,7 +237,7 @@ public partial class XMLContentEditor : Form } } - private void SaveXML() + private void SaveXML(bool noReload = false) { XMLView.EndEdit(); @@ -302,8 +334,15 @@ public partial class XMLContentEditor : Form break; } - MessageBox.Show(fileName + " has been saved! The list will now reload.", "XML Content Editor - File Saved", MessageBoxButtons.OK, MessageBoxIcon.Information); - LoadXML(ListType); + if (!noReload) + { + MessageBox.Show(fileName + " has been saved! The list will now reload.", "XML Content Editor - File Saved", MessageBoxButtons.OK, MessageBoxIcon.Information); + LoadXML(ListType); + } + else + { + MessageBox.Show(fileName + " has been saved!", "XML Content Editor - File Saved", MessageBoxButtons.OK, MessageBoxIcon.Information); + } } //this is completely fucking dumb. diff --git a/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.resx b/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.resx index 3aa8969..287f054 100644 --- a/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.resx +++ b/Novetus/NovetusLauncher/Forms/SDK/XMLContentEditor.resx @@ -121,6 +121,16 @@ 17, 17 + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAAPZJREFUOE9jGJ5AHYgXAvE5IN4ExM5ATDTQBeKXQFwMxIZAHAXED6E0UWAzEKdB + mHCgD8TPgZgFzCMAQLaLQ5go4C4QK0OY+MFVIDaBMOGAg4GB8QMbF78QlI8bMDIyFACpw0AsCBaAOHs6 + IyPTWyEFdX+IEH7AyMLM2A+k3wHxfiB+zMzE9FVSTHy/nLjAdnENgwiQIoJAlJtNVkhIKIhXWNpIXlRo + iayijo+SmMBEGVESDIGBadk2nHJSoptltUx9FEUFJnKxcTwQtkiWh0oTB2CGsLGw72JkZv3DqRNKmgEg + 0BWgyyYmwJPEK6ZsCRUaFICBAQA/QCigcF/kiAAAAABJRU5ErkJggg== + + AAABAAYAAAAAAAEAIADOBwAAZgAAAICAAAABACAAKAgBADQIAABAQAAAAQAgAChCAABcEAEAMDAAAAEA diff --git a/changelog.txt b/changelog.txt index 17babe0..b806cf3 100644 --- a/changelog.txt +++ b/changelog.txt @@ -16,6 +16,9 @@ Changes from Pre-Release 5: - Added transparency, reflectiveness, part colors, and rotation options for hats in the Item Creation SDK. - Texures are no longer required for Hats and normal Heads in the Item Creation SDK. - Added much more descriptive server browser errors. +- Added 74 more colors to the Character Customization and Item Creation SDK color pages. +- Added searching to the XML Content Editor. +- The XML Content Editor will no longer reload the list upon closing. Changes from 1.2.4.1: - The OBJ2MeshV1GUI, The Asset Localizer, and the Item SDK have been merged to form the Asset SDK! - Works with the Roblox Asset Delivery API! Note: Script assets wil have to be downloaded manually in order to be used in scripts. diff --git a/scripts/launcher/PartColors.xml b/scripts/launcher/PartColors.xml index ea1c446..ae150b7 100644 --- a/scripts/launcher/PartColors.xml +++ b/scripts/launcher/PartColors.xml @@ -5,327 +5,697 @@ White 1 - 242,243,243 + [242, 243, 243] Light stone grey 208 - 229,228,223 + [229, 228, 223] Medium stone grey 194 - 163,162,165 + [163, 162, 165] Dark stone grey 199 - 99,95,98 + [99, 95, 98] Black 26 - 27,42,53 + [27, 42, 53] Bright red 21 - 196,40,28 + [196, 40, 28] Bright yellow 24 - 245,205,48 + [245, 205, 48] Cool yellow 226 - 253,234,141 + [253, 234, 141] Bright blue 23 - 13,105,172 + [13, 105, 172] Bright bluish green 107 - 0,143,156 + [0, 143, 156] Medium blue 102 - 110,153,202 + [110, 153, 202] Pastel Blue 11 - 128,187,219 + [128, 187, 219] Light blue 45 - 180,210,228 + [180, 210, 228] Sand blue 135 - 116,134,157 + [116, 134, 157] Bright orange 106 - 206,125,63 + [206, 125, 63] Br. yellowish orange 105 - 225,154,66 + [225, 154, 66] Earth green 141 - 36,65,43 + [36, 65, 43] Dark green 28 - 40,127,71 + [40, 127, 71] Bright green 37 - 75,151,75 + [75, 151, 75] Br. yellowish green 119 - 164,189,71 + [164, 189, 71] Medium green 29 - 161,196,140 + [161, 196, 140] Sand green 151 - 120,144,130 + [120, 144, 130] Dark orange 38 - 160,95,53 + [160, 95, 53] Reddish brown 192 - 105,64,40 + [105, 64, 40] Bright violet 104 - 107,50,124 + [107, 50, 124] Light reddish violet 9 - 232,186,200 + [232, 186, 200] Medium red 101 - 218,134,122 + [218, 134, 122] Brick yellow 5 - 215,197,154 + [215, 197, 154] Sand red 153 - 149,121,119 + [149, 121, 119] Brown 217 - 124,92,70 + [124, 92, 70] Nougat 18 - 204,142,105 + [204, 142, 105] - Light orange - 125 - 234,184,146 - - - Med. reddish violet - 22 - 196,112,160 - - - Dark nougat - 128 - 174,122,89 - - - Institutional white + Institutional white (2009+) 1001 - 248,248,248 + [248, 248, 248] - Mid gray + Mid gray (2009+) 1002 - 205,205,205 + [205, 205, 205] - Really black + Really black (2009+) 1003 - 17,17,17 + [17, 17, 17] - Grime + Grime (2009+) 1022 - 127,142,100 + [127, 142, 100] - Lavender + Lavender (2009+) 1023 - 140,91,159 + [140, 91, 159] - Neon orange + Neon orange (2009+) 1005 - 216,148,13 + [216, 148, 13] - Teal + Teal (2009+) 1018 - 18,238,212 + [18, 238, 212] - Pastel brown + Pastel brown (2009+) 1030 - 255,204,153 + [255, 204, 153] - Pastel yellow + Pastel yellow (2009+) 1029 - 255,255,204 + [255, 255, 204] - Pastel orange + Pastel orange (2009+) 1025 - 255,201,201 + [255, 201, 201] - Pink + Pink (2009+) 1016 - 255,102,204 + [255, 102, 204] - Pastel violet + Pastel violet (2009+) 1026 - 177,167,255 + [177, 167, 255] - Pastel light blue + Pastel light blue (2009+) 1024 - 175,221,255 + [175, 221, 255] - Pastel blue-green + Pastel blue-green (2009+) 1027 - 159,243,233 + [159, 243, 233] - Pastel green + Pastel green (2009+) 1028 - 204,255,204 + [204, 255, 204] - Olive + Olive (2009+) 1008 - 193,190,66 + [193, 190, 66] - New Yeller + New Yeller (2009+) 1009 - 255,255,0 + [255, 255, 0] - Really red + Really red (2009+) 1004 - 255,0,0 + [255, 0, 0] - Hot pink + Hot pink (2009+) 1032 - 255,0,191 + [255, 0, 191] - Really blue + Really blue (2009+) 1010 - 0,0,255 + [0, 0, 255] - Toothpaste + Toothpaste (2009+) 1019 - 0,255,255 + [0, 255, 255] - Lime green + Lime green (2009+) 1020 - 0,255,0 + [0, 255, 0] - Royal purple + Royal purple (2009+) 1031 - 98,37,209 + [98, 37, 209] - Alder + Alder (2009+) 1006 - 180,128,255 + [180, 128, 255] - Cyan + Cyan (2009+) 1013 - 4,175,236 + [4, 175, 236] - Camo + Camo (2009+) 1021 - 58,125,21 + [58, 125, 21] - CGA brown + CGA brown (2009+) 1014 - 170,85,0 + [170, 85, 0] - Dusty Rose + Dusty Rose (2009+) 1007 - 163,75,75 + [163, 75, 75] - Magenta + Magenta (2009+) 1015 - 170,0,170 + [170, 0, 170] - Deep blue + Deep blue (2009+) 1012 - 33,84,185 + [33, 84, 185] - Navy blue + Navy blue (2009+) 1011 - 0,32,96 + [0, 32, 96] + + + Light orange (Unused) + 125 + [234, 184, 146] + + + Med. reddish violet (Unused) + 22 + [196, 112, 160] + + + Dark nougat (Unused) + 128 + [174, 122, 89] + + + Grey (Unused) + 2 + [161, 165, 162] + + + Light yellow (Unused) + 3 + [249, 233, 153] + + + Light green (Mint) (Unused) + 6 + [194, 218, 184] + + + Light orange brown (Unused) + 12 + [203, 132, 66] + + + Earth orange (Unused) + 25 + [98, 71, 50] + + + Dark grey (Unused) + 27 + [109, 110, 108] + + + Lig. Yellowich orange (Unused) + 36 + [243, 207, 155] + + + Light bluish violet (Unused) + 39 + [193, 202, 222] + + + Transparent (Unused) + 40 + [236, 236, 236] + + + Tr. Red (Unused) + 41 + [205, 84, 75] + + + Tr. Lg blue (Unused) + 42 + [193, 223, 240] + + + Tr. Blue (Unused) + 43 + [123, 182, 232] + + + Tr. Yellow (Unused) + 44 + [247, 241, 141] + + + Tr. Flu. Reddish orange (Unused) + 47 + [217, 133, 108] + + + Tr. Green (Unused) + 48 + [132, 182, 141] + + + Tr. Flu. Green (Unused) + 49 + [248, 241, 132] + + + Phosph. White (Unused) + 50 + [236, 232, 222] + + + Light red (Unused) + 100 + [238, 196, 182] + + + Light grey (Unused) + 103 + [199, 193, 183] + + + Earth yellow (Unused) + 108 + [104, 92, 67] + + + Bright bluish violet (Unused) + 110 + [67, 84, 147] + + + Tr. Brown (Unused) + 111 + [191, 183, 177] + + + Medium bluish violet (Unused) + 112 + [104, 116, 172] + + + Tr. Medi. reddish violet (Unused) + 113 + [229, 173, 200] + + + Med. yellowish green (Unused) + 115 + [199, 210, 60] + + + Med. bluish green (Unused) + 116 + [85, 165, 175] + + + Light bluish green (Unused) + 118 + [183, 215, 213] + + + Lig. yellowish green (Unused) + 120 + [217, 228, 167] + + + Med. yellowish orange (Unused) + 121 + [231, 172, 88] + + + Br. reddish orange (Unused) + 123 + [211, 111, 76] + + + Bright reddish violet (Unused) + 124 + [146, 57, 120] + + + Tr. Bright bluish violet (Unused) + 126 + [165, 165, 203] + + + Gold (Unused) + 127 + [220, 188, 129] + + + Silver (Unused) + 131 + [156, 163, 168] + + + Neon orange (2006) (Unused) + 133 + [213, 115, 61] + + + Neon green (Unused) + 134 + [216, 221, 86] + + + Sand violet (Unused) + 136 + [135, 124, 144] + + + Medium orange (Unused) + 137 + [224, 152, 100] + + + Sand yellow (Unused) + 138 + [149, 138, 115] + + + Earth blue (Unused) + 140 + [32, 58, 86] + + + Tr. Flu. Blue (Unused) + 143 + [207, 226, 247] + + + Sand blue metallic (Unused) + 145 + [121, 136, 161] + + + Sand violet metallic (Unused) + 146 + [149, 142, 163] + + + Dark red (Unused) + 154 + [123, 46, 47] + + + Tr. Flu. Yellow (Unused) + 157 + [255, 246, 123] + + + Tr. Flu. Red (Unused) + 158 + [225, 164, 194] + + + Gun metallic (Unused) + 168 + [117, 108, 98] + + + Red flip/flop (Unused) + 176 + [151, 105, 91] + + + Yellow flip/flop (Unused) + 178 + [180, 132, 85] + + + Silver flip/flop (Unused) + 179 + [137, 135, 136] + + + Curry (Unused) + 180 + [215, 169, 75] + + + Fire Yellow (Unused) + 190 + [249, 214, 46] + + + Flame yellowish orange (Unused) + 191 + [232, 171, 45] + + + Royal blue (Unused) + 195 + [70, 103, 164] + + + Dark Royal blue (Unused) + 196 + [35, 71, 139] + + + Bright reddish lilac (Unused) + 198 + [142, 66, 133] + + + Lemon metalic (Unused) + 200 + [130, 138, 93] + + + Dark Curry (Unused) + 209 + [176, 142, 68] + + + Faded green (Unused) + 210 + [112, 149, 120] + + + Turquoise (Unused) + 211 + [121, 181, 181] + + + Light Royal blue (Unused) + 212 + [159, 195, 233] + + + Medium Royal blue (Unused) + 213 + [108, 129, 183] + + + Rust (Unused) + 216 + [144, 76, 42] + + + Reddish lilac (Unused) + 218 + [150, 112, 159] + + + Lilac (Unused) + 219 + [107, 98, 155] + + + Light lilac (Unused) + 220 + [167, 169, 206] + + + Bright purple (Unused) + 221 + [205, 98, 152] + + + Light purple (Unused) + 222 + [228, 173, 200] + + + Light pink (Unused) + 223 + [220, 144, 149] + + + Light brick yellow (Unused) + 224 + [240, 213, 160] + + + Warm yellowish orange (Unused) + 225 + [235, 184, 127] + + + Dove blue (Unused) + 232 + [125, 187, 221] + + + Medium lilac (Unused) + 268 + [52, 43, 117] + + + Deep orange (2009+) (Unused) + 1005 + [255, 176, 0] \ No newline at end of file diff --git a/scripts/launcher/splashes.txt b/scripts/launcher/splashes.txt index e45256b..6b26443 100644 --- a/scripts/launcher/splashes.txt +++ b/scripts/launcher/splashes.txt @@ -154,4 +154,8 @@ I'm SINCERELY thanking you, you're not stopping me! No-ve-tus ...AND I...AM AN ARSONIST. Is nostalgia my inherent weakness? -Updated localization files. \ No newline at end of file +Updated localization files. +Do you think healing is just magic? +Part of a hearty dinner! +Inspired by JRBX! +It's Unicron! \ No newline at end of file