This commit is contained in:
Quacky 2017-08-07 18:31:40 -05:00
parent 3b0ae50517
commit d62769e82e
3 changed files with 13 additions and 10 deletions

View File

@ -675,13 +675,13 @@ function CSConnect(UserID,ServerIP,ServerPort,PlayerName,Hat1ID,Hat2ID,Hat3ID,He
UserSettings().GameSettings.ControlMode.Changed:connect(function() UserSettings().GameSettings.ControlMode.Changed:connect(function()
if UserSettings().GameSettings.ControlMode == Enum.ControlMode["MouseShiftLock"] then if UserSettings().GameSettings.ControlMode == Enum.ControlMode["MouseShiftLock"] then
if game.CoreGui.RobloxGui.MouseLockLabel.Visible == false then if game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible == false then
game.CoreGui.RobloxGui.MouseLockLabel.Visible = true game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible = true
end end
end end
if UserSettings().GameSettings.ControlMode == Enum.ControlMode["Classic"] then if UserSettings().GameSettings.ControlMode == Enum.ControlMode["Classic"] then
if game.CoreGui.RobloxGui.MouseLockLabel.Visible == true then if game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible == true then
game.CoreGui.RobloxGui.MouseLockLabel.Visible = false game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible = false
end end
end end
end) end)
@ -820,13 +820,13 @@ function CSSolo(UserID,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,
UserSettings().GameSettings.ControlMode.Changed:connect(function() UserSettings().GameSettings.ControlMode.Changed:connect(function()
if UserSettings().GameSettings.ControlMode == Enum.ControlMode["MouseShiftLock"] then if UserSettings().GameSettings.ControlMode == Enum.ControlMode["MouseShiftLock"] then
if game.CoreGui.RobloxGui.MouseLockLabel.Visible == false then if game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible == false then
game.CoreGui.RobloxGui.MouseLockLabel.Visible = true game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible = true
end end
end end
if UserSettings().GameSettings.ControlMode == Enum.ControlMode["Classic"] then if UserSettings().GameSettings.ControlMode == Enum.ControlMode["Classic"] then
if game.CoreGui.RobloxGui.MouseLockLabel.Visible == true then if game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible == true then
game.CoreGui.RobloxGui.MouseLockLabel.Visible = false game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible = false
end end
end end
end) end)

View File

@ -530,7 +530,10 @@ namespace RBXLegacyLauncher
void Button19Click(object sender, EventArgs e) void Button19Click(object sender, EventArgs e)
{ {
DialogResult result = MessageBox.Show("Note: If the health bar or scoreboard don't appear, just reset your character. If your character does not move or your character lags after the client window is loaded, just open the server window then minimize it.","RBXLegacy Launcher - Play Solo", MessageBoxButtons.OK, MessageBoxIcon.Information); if (GlobalVars.SelectedClientVersion >= 7)
{
DialogResult result = MessageBox.Show("Note: If the health bar or scoreboard don't appear, just reset your character.","RBXLegacy Launcher - Play Solo", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
WriteConfigValues(); WriteConfigValues();
StartSolo(); StartSolo();

View File

@ -1,7 +1,7 @@
namespace RBXLegacyLauncher namespace RBXLegacyLauncher
{ {
partial class ServerInfo partial class ServerInfo
{> {
private System.ComponentModel.IContainer components = null; private System.ComponentModel.IContainer components = null;
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing) protected override void Dispose(bool disposing)