fixes
This commit is contained in:
parent
3b0ae50517
commit
d62769e82e
|
|
@ -675,13 +675,13 @@ function CSConnect(UserID,ServerIP,ServerPort,PlayerName,Hat1ID,Hat2ID,Hat3ID,He
|
|||
|
||||
UserSettings().GameSettings.ControlMode.Changed:connect(function()
|
||||
if UserSettings().GameSettings.ControlMode == Enum.ControlMode["MouseShiftLock"] then
|
||||
if game.CoreGui.RobloxGui.MouseLockLabel.Visible == false then
|
||||
game.CoreGui.RobloxGui.MouseLockLabel.Visible = true
|
||||
if game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible == false then
|
||||
game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible = true
|
||||
end
|
||||
end
|
||||
if UserSettings().GameSettings.ControlMode == Enum.ControlMode["Classic"] then
|
||||
if game.CoreGui.RobloxGui.MouseLockLabel.Visible == true then
|
||||
game.CoreGui.RobloxGui.MouseLockLabel.Visible = false
|
||||
if game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible == true then
|
||||
game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible = false
|
||||
end
|
||||
end
|
||||
end)
|
||||
|
|
@ -820,13 +820,13 @@ function CSSolo(UserID,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,
|
|||
|
||||
UserSettings().GameSettings.ControlMode.Changed:connect(function()
|
||||
if UserSettings().GameSettings.ControlMode == Enum.ControlMode["MouseShiftLock"] then
|
||||
if game.CoreGui.RobloxGui.MouseLockLabel.Visible == false then
|
||||
game.CoreGui.RobloxGui.MouseLockLabel.Visible = true
|
||||
if game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible == false then
|
||||
game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible = true
|
||||
end
|
||||
end
|
||||
if UserSettings().GameSettings.ControlMode == Enum.ControlMode["Classic"] then
|
||||
if game.CoreGui.RobloxGui.MouseLockLabel.Visible == true then
|
||||
game.CoreGui.RobloxGui.MouseLockLabel.Visible = false
|
||||
if game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible == true then
|
||||
game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible = false
|
||||
end
|
||||
end
|
||||
end)
|
||||
|
|
|
|||
|
|
@ -530,7 +530,10 @@ namespace RBXLegacyLauncher
|
|||
|
||||
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();
|
||||
StartSolo();
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
namespace RBXLegacyLauncher
|
||||
{
|
||||
partial class ServerInfo
|
||||
{>
|
||||
{
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
|
|
|
|||
Loading…
Reference in New Issue