1.7.2
This commit is contained in:
parent
99ab59fa83
commit
d884c5addf
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 = "";
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
|
|
@ -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
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue