diff --git a/CSMPFunctions.lua b/CSMPFunctions.lua index 0a77c76..48f0e18 100644 --- a/CSMPFunctions.lua +++ b/CSMPFunctions.lua @@ -228,7 +228,11 @@ function CSConnect(UserID,ServerIP,ServerPort,PlayerName,OutfitID,Ticket) pcall(function() Player:SetMembershipType(Enum.MembershipType.BuildersClub) end); pcall(function() Player:SetAccountAge(365) end); Player:SetSuperSafeChat(false); - Player.CharacterAppearance="http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..(OutfitID or 0); + if (OutfitID) then + Player.CharacterAppearance="http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..OutfitID; + else + Player.CharacterAppearance=0; + end pcall(function() Player.Name=PlayerName or ""; end); pcall(function() Visit:SetUploadUrl(""); end); end diff --git a/CSMPFunctionsModern.lua b/CSMPFunctions_Modern.lua similarity index 99% rename from CSMPFunctionsModern.lua rename to CSMPFunctions_Modern.lua index be79fb3..876bc5b 100644 --- a/CSMPFunctionsModern.lua +++ b/CSMPFunctions_Modern.lua @@ -239,7 +239,7 @@ function CSConnect(UserID,ServerIP,ServerPort,PlayerName,OutfitID,Ticket) NetworkClient:Connect(ServerIP,ServerPort); end); if (not Error) then - SetMessage("Error: Connection failed"); + SetMessage("Failed to connect to the Game."); end end pcall(function() Player:SetUnder13(false) end); diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/ClientinfoCreator.cs b/RBXLegacyLauncher/RBXLegacyLauncher/ClientinfoCreator.cs index 179acf7..b81969c 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/ClientinfoCreator.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/ClientinfoCreator.cs @@ -124,7 +124,7 @@ namespace RBXLegacyLauncher GlobalVars.ClientCreator_LoadsAssetsOnline = bline5; Boolean bline6 = bool.Parse(line6); - GlobalVars.ClientCreator_NewMapLoader = bline6; + GlobalVars.ClientCreator_ModernClient = bline6; GlobalVars.ClientCreator_SelectedClientDesc = line7; @@ -133,7 +133,7 @@ namespace RBXLegacyLauncher checkBox3.Checked = GlobalVars.ClientCreator_SupportsLocalPlay; checkBox4.Checked = GlobalVars.ClientCreator_SupportsAppearanceID; checkBox5.Checked = GlobalVars.ClientCreator_LoadsAssetsOnline; - checkBox6.Checked = GlobalVars.ClientCreator_NewMapLoader; + checkBox6.Checked = GlobalVars.ClientCreator_ModernClient; textBox1.Text = GlobalVars.ClientCreator_SelectedClientDesc; } } @@ -150,7 +150,7 @@ namespace RBXLegacyLauncher if (sfd.ShowDialog() == DialogResult.OK) { - string[] lines = { GlobalVars.ClientCreator_UsesPlayerName.ToString(), GlobalVars.ClientCreator_UsesID.ToString(), GlobalVars.ClientCreator_SupportsLocalPlay.ToString(), GlobalVars.ClientCreator_SupportsAppearanceID.ToString(), GlobalVars.ClientCreator_LoadsAssetsOnline.ToString(), GlobalVars.ClientCreator_NewMapLoader.ToString(), GlobalVars.ClientCreator_SelectedClientDesc.ToString() }; + string[] lines = { GlobalVars.ClientCreator_UsesPlayerName.ToString(), GlobalVars.ClientCreator_UsesID.ToString(), GlobalVars.ClientCreator_SupportsLocalPlay.ToString(), GlobalVars.ClientCreator_SupportsAppearanceID.ToString(), GlobalVars.ClientCreator_LoadsAssetsOnline.ToString(), GlobalVars.ClientCreator_ModernClient.ToString(), GlobalVars.ClientCreator_SelectedClientDesc.ToString() }; File.WriteAllLines(sfd.FileName, lines); } } @@ -180,14 +180,14 @@ namespace RBXLegacyLauncher GlobalVars.ClientCreator_SupportsLocalPlay = false; GlobalVars.ClientCreator_SupportsAppearanceID = false; GlobalVars.ClientCreator_LoadsAssetsOnline = false; - GlobalVars.ClientCreator_NewMapLoader = false; + GlobalVars.ClientCreator_ModernClient = false; GlobalVars.ClientCreator_SelectedClientDesc = ""; checkBox1.Checked = GlobalVars.ClientCreator_UsesPlayerName; checkBox2.Checked = GlobalVars.ClientCreator_UsesID; checkBox3.Checked = GlobalVars.ClientCreator_SupportsLocalPlay; checkBox4.Checked = GlobalVars.ClientCreator_SupportsAppearanceID; checkBox5.Checked = GlobalVars.ClientCreator_LoadsAssetsOnline; - checkBox6.Checked = GlobalVars.ClientCreator_NewMapLoader; + checkBox6.Checked = GlobalVars.ClientCreator_ModernClient; textBox1.Text = GlobalVars.ClientCreator_SelectedClientDesc; } @@ -195,11 +195,11 @@ namespace RBXLegacyLauncher { if (checkBox6.Checked == true) { - GlobalVars.ClientCreator_NewMapLoader = true; + GlobalVars.ClientCreator_ModernClient = true; } else if (checkBox6.Checked == false) { - GlobalVars.ClientCreator_NewMapLoader = false; + GlobalVars.ClientCreator_ModernClient = false; } } } diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/GlobalVars.cs b/RBXLegacyLauncher/RBXLegacyLauncher/GlobalVars.cs index 740589e..a6dc0e4 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/GlobalVars.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/GlobalVars.cs @@ -24,13 +24,13 @@ public static bool SupportsAppearanceID = false; public static string SelectedClientDesc = ""; public static bool LoadsAssetsOnline = false; - public static bool NewMapLoader = false; + public static bool ModernClient = false; //clientinfocreator public static bool ClientCreator_UsesPlayerName = false; public static bool ClientCreator_UsesID = false; public static bool ClientCreator_SupportsLocalPlay = false; public static bool ClientCreator_SupportsAppearanceID = false; public static bool ClientCreator_LoadsAssetsOnline = false; - public static bool ClientCreator_NewMapLoader = false; + public static bool ClientCreator_ModernClient = false; public static string ClientCreator_SelectedClientDesc = ""; } \ No newline at end of file diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs index 3ff2f1f..69a2dea 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs @@ -70,15 +70,7 @@ namespace RBXLegacyLauncher if (result == DialogResult.Cancel) return; - string luafile = ""; - if (GlobalVars.NewMapLoader == true) - { - luafile = "rbxasset://scripts\\\\CSMPFunctionsModern.lua"; - } - else if (GlobalVars.NewMapLoader == false) - { - luafile = GlobalVars.ScriptsDir + @"\\CSMPFunctions.lua"; - } + string luafile = "rbxasset://scripts\\\\CSMPFunctions.lua"; string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp.exe"; string quote = "\""; string args = ""; @@ -101,20 +93,20 @@ namespace RBXLegacyLauncher } else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == true && !IsUsingCharacterOutfitIDs()) { - args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "',0);" + quote; + args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "');" + quote; } else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == true && !IsUsingCharacterOutfitIDs()) { - args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player',0);" + quote; + args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(" + GlobalVars.UserID + ",'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player');" + quote; } //how the fuck does this even happen? oh well. else if (GlobalVars.UsesPlayerName == true && GlobalVars.UsesID == false && !IsUsingCharacterOutfitIDs()) { - args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "',0);" + quote; + args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'" + GlobalVars.PlayerName + "');" + quote; } else if (GlobalVars.UsesPlayerName == false && GlobalVars.UsesID == false && !IsUsingCharacterOutfitIDs()) { - args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player',0);" + quote; + args = "-script " + quote + "dofile('" + luafile + "'); _G.CSConnect(0,'" + GlobalVars.IP + "'," + GlobalVars.RobloxPort + ",'Player');" + quote; } if (GlobalVars.LocalPlayMode == true) @@ -134,40 +126,18 @@ namespace RBXLegacyLauncher if (result == DialogResult.Cancel) return; - string luafile = ""; - if (GlobalVars.NewMapLoader == true) - { - luafile = "rbxasset://scripts\\\\CSMPFunctionsModern.lua"; - } - else if (GlobalVars.NewMapLoader == false) - { - luafile = GlobalVars.ScriptsDir + @"\\CSMPFunctions.lua"; - } + string luafile = "rbxasset://scripts\\\\CSMPFunctions.lua"; string mapfile = GlobalVars.MapsDir + @"\\" + GlobalVars.Map; string rbxexe = GlobalVars.ClientDir + @"\\" + GlobalVars.SelectedClient + @"\\RobloxApp.exe"; string quote = "\""; string args = ""; - if (GlobalVars.NewMapLoader == true) + if (GlobalVars.BodyColors == true) { - if (GlobalVars.BodyColors == true) - { - args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); _G.CSServer(" + GlobalVars.RobloxPort + ",true);"; - } - else if (GlobalVars.BodyColors == false) - { - args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); _G.CSServer(" + GlobalVars.RobloxPort + ",false);"; - } + args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); _G.CSServer(" + GlobalVars.RobloxPort + ",true);"; } - else if (GlobalVars.NewMapLoader == false) + else if (GlobalVars.BodyColors == false) { - if (GlobalVars.BodyColors == true) - { - args = " -script " + quote + "dofile('" + luafile + "'); _G.CSServer(" + GlobalVars.RobloxPort + ",true); game:Load('" + mapfile + "');" + quote; - } - else if (GlobalVars.BodyColors == false) - { - args = " -script " + quote + "dofile('" + luafile + "'); _G.CSServer(" + GlobalVars.RobloxPort + ",false); game:Load('" + mapfile + "');" + quote; - } + args = quote + mapfile + "\" -script \"dofile('" + luafile + "'); _G.CSServer(" + GlobalVars.RobloxPort + ",false);"; } Process.Start(rbxexe, args); if (GlobalVars.CloseOnLaunch == true) @@ -186,13 +156,13 @@ namespace RBXLegacyLauncher string mapfile = GlobalVars.MapsDir + @"\\" + GlobalVars.Map; string quote = "\""; string args = ""; - if (GlobalVars.NewMapLoader == true) + if (GlobalVars.ModernClient == true) { args = quote + mapfile + "\" -script \"" + @"loadstring('\108\111\99\97\108\32\67\111\114\101\71\117\105\32\61\32\103\97\109\101\58\71\101\116\83\101\114\118\105\99\101\40\34\67\111\114\101\71\117\105\34\41\59\10\119\104\105\108\101\32\110\111\116\32\67\111\114\101\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\82\111\98\108\111\120\71\117\105\34\41\32\100\111\10\9\67\111\114\101\71\117\105\46\67\104\105\108\100\65\100\100\101\100\58\119\97\105\116\40\41\59\10\101\110\100\10\108\111\99\97\108\32\82\111\98\108\111\120\71\117\105\32\61\32\67\111\114\101\71\117\105\46\82\111\98\108\111\120\71\117\105\59\10\108\111\99\97\108\32\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\32\61\32\82\111\98\108\111\120\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\34\41\10\108\111\99\97\108\32\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\32\61\32\82\111\98\108\111\120\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\34\41\10\108\111\99\97\108\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\32\61\32\82\111\98\108\111\120\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\84\111\112\76\101\102\116\67\111\110\116\114\111\108\34\41\10\108\111\99\97\108\32\66\117\105\108\100\84\111\111\108\115\32\61\32\82\111\98\108\111\120\71\117\105\58\70\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\66\117\105\108\100\84\111\111\108\115\34\41\10\102\117\110\99\116\105\111\110\32\109\97\107\101\89\82\101\108\97\116\105\118\101\40\41\10\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\50\10\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\50\10\105\102\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\32\116\104\101\110\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\50\32\101\110\100\10\105\102\32\66\117\105\108\100\84\111\111\108\115\32\116\104\101\110\32\66\117\105\108\100\84\111\111\108\115\46\70\114\97\109\101\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\50\32\101\110\100\10\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\80\111\115\105\116\105\111\110\32\61\32\85\68\105\109\50\46\110\101\119\40\48\44\48\44\49\44\45\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\89\41\10\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\80\111\115\105\116\105\111\110\32\61\32\85\68\105\109\50\46\110\101\119\40\49\44\45\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\88\44\49\44\45\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\89\41\10\101\110\100\10\102\117\110\99\116\105\111\110\32\109\97\107\101\88\82\101\108\97\116\105\118\101\40\41\10\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\49\10\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\49\10\105\102\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\32\116\104\101\110\32\84\111\112\76\101\102\116\67\111\110\116\114\111\108\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\49\32\101\110\100\10\105\102\32\66\117\105\108\100\84\111\111\108\115\32\116\104\101\110\32\66\117\105\108\100\84\111\111\108\115\46\70\114\97\109\101\46\83\105\122\101\67\111\110\115\116\114\97\105\110\116\32\61\32\49\32\101\110\100\10\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\80\111\115\105\116\105\111\110\32\61\32\85\68\105\109\50\46\110\101\119\40\48\44\48\44\49\44\45\66\111\116\116\111\109\76\101\102\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\89\41\10\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\80\111\115\105\116\105\111\110\32\61\32\85\68\105\109\50\46\110\101\119\40\49\44\45\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\88\44\49\44\45\66\111\116\116\111\109\82\105\103\104\116\67\111\110\116\114\111\108\46\65\98\115\111\108\117\116\101\83\105\122\101\46\89\41\10\101\110\100\10\108\111\99\97\108\32\102\117\110\99\116\105\111\110\32\114\101\115\105\122\101\40\41\10\105\102\32\82\111\98\108\111\120\71\117\105\46\65\98\115\111\108\117\116\101\83\105\122\101\46\120\32\62\32\82\111\98\108\111\120\71\117\105\46\65\98\115\111\108\117\116\101\83\105\122\101\46\121\32\116\104\101\110\10\109\97\107\101\89\82\101\108\97\116\105\118\101\40\41\10\101\108\115\101\10\109\97\107\101\88\82\101\108\97\116\105\118\101\40\41\10\101\110\100\10\101\110\100\10\82\111\98\108\111\120\71\117\105\46\67\104\97\110\103\101\100\58\99\111\110\110\101\99\116\40\102\117\110\99\116\105\111\110\40\112\114\111\112\101\114\116\121\41\10\105\102\32\112\114\111\112\101\114\116\121\32\61\61\32\34\65\98\115\111\108\117\116\101\83\105\122\101\34\32\116\104\101\110\10\119\97\105\116\40\41\10\114\101\115\105\122\101\40\41\10\101\110\100\10\101\110\100\41\10\119\97\105\116\40\41\10\114\101\115\105\122\101\40\41\10')()"; } - else if (GlobalVars.NewMapLoader == false) + else if (GlobalVars.ModernClient == false) { - args = " -script " + quote + "game:Load('" + mapfile + "');" + quote; + args = quote + mapfile + quote; } Process.Start(rbxexe, args); @@ -355,7 +325,7 @@ namespace RBXLegacyLauncher GlobalVars.LoadsAssetsOnline = bline5; bool bline6 = Convert.ToBoolean(line6); - GlobalVars.NewMapLoader = bline6; + GlobalVars.ModernClient = bline6; GlobalVars.SelectedClientDesc = line7; diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.ClientinfoEditor.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.ClientinfoEditor.resources new file mode 100644 index 0000000..254ebd3 Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.ClientinfoEditor.resources differ diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.MainForm.resources b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.MainForm.resources new file mode 100644 index 0000000..9892acb Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.MainForm.resources differ diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.FileListAbsolute.txt b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..836502b --- /dev/null +++ b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.FileListAbsolute.txt @@ -0,0 +1,7 @@ +C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\bin\Release\RBXLegacyLauncher.exe.config +C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\bin\Release\RBXLegacyLauncher.exe +C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.csprojResolveAssemblyReference.cache +C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.ClientinfoEditor.resources +C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.MainForm.resources +C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.csproj.GenerateResource.Cache +C:\Users\BITL\Documents\GitHub\RBXLegacy-src\RBXLegacyLauncher\RBXLegacyLauncher\obj\Release\RBXLegacyLauncher.exe diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.GenerateResource.Cache b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.GenerateResource.Cache new file mode 100644 index 0000000..39fd3cf Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csproj.GenerateResource.Cache differ diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csprojResolveAssemblyReference.cache b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csprojResolveAssemblyReference.cache new file mode 100644 index 0000000..0ee1d1c Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.csprojResolveAssemblyReference.cache differ diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.exe b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.exe new file mode 100644 index 0000000..36c3fe9 Binary files /dev/null and b/RBXLegacyLauncher/RBXLegacyLauncher/obj/Release/RBXLegacyLauncher.exe differ diff --git a/RBXLegacySetup.iss b/RBXLegacySetup.iss index dbc58a5..eca4ef0 100644 --- a/RBXLegacySetup.iss +++ b/RBXLegacySetup.iss @@ -1,7 +1,7 @@ ; Script generated by the Inno Script Studio Wizard. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! -#define AppVer "1.7.1" +#define AppVer "1.7.2" [Setup] ; NOTE: The value of AppId uniquely identifies this application.