diff --git a/Novetus/NovetusCore/Classes/FileFormat.cs b/Novetus/NovetusCore/Classes/FileFormat.cs index f5d249a..aebc7dc 100644 --- a/Novetus/NovetusCore/Classes/FileFormat.cs +++ b/Novetus/NovetusCore/Classes/FileFormat.cs @@ -68,7 +68,7 @@ public class FileFormat AssetSDKFixerSaveBackups = true; AlternateServerIP = ""; DisableReshadeDelete = false; - ShowServerNotifications = true; + ShowServerNotifications = false; ServerBrowserServerName = "Novetus"; ServerBrowserServerAddress = "localhost"; Priority = ProcessPriorityClass.RealTime; diff --git a/Novetus/NovetusCore/StorageAndFunctions/ScriptFuncs.cs b/Novetus/NovetusCore/StorageAndFunctions/ScriptFuncs.cs index 057405b..b2d05ae 100644 --- a/Novetus/NovetusCore/StorageAndFunctions/ScriptFuncs.cs +++ b/Novetus/NovetusCore/StorageAndFunctions/ScriptFuncs.cs @@ -70,7 +70,8 @@ public class ScriptFuncs + GlobalVars.UserConfiguration.PlayerLimit + "," + md5s + "," + GlobalVars.UserConfiguration.ShowServerNotifications.ToString().ToLower() - + ((GlobalVars.ValidatedExtraFiles > 0) ? "," + GlobalVars.ValidatedExtraFiles.ToString() + ");" : ",0);"); + + ((GlobalVars.ValidatedExtraFiles > 0) ? "," + GlobalVars.ValidatedExtraFiles.ToString() + "," : ",0,") + + GlobalVars.UserConfiguration.NewGUI.ToString().ToLower() + ");"; case ScriptType.Solo: case ScriptType.EasterEgg: return "_G.CSSolo(" @@ -79,7 +80,8 @@ public class ScriptFuncs + GlobalVars.soloLoadout + "," + GlobalVars.UserConfiguration.NewGUI.ToString().ToLower() + ");"; case ScriptType.Studio: - return "_G.CSStudio();"; + return "_G.CSStudio(" + + GlobalVars.UserConfiguration.NewGUI.ToString().ToLower() + ");"; default: return ""; } diff --git a/changelog.txt b/changelog.txt index 4eba592..cce29a5 100644 --- a/changelog.txt +++ b/changelog.txt @@ -36,6 +36,11 @@ Enhancements: - Studio can now be launched alongside other game types and clients. - Universal maps are now categorized based on client optimizations. - Clearing asset cache now properly clears the folder. +- Rise of the Killbots: The Killbots' behaviors will now more accurately depict the Killbots from Rise of the Killbots: MEMORY ERROR. +- Added the ability to reset graphics settings. +- Pressing the ESC key in 2011M with the 2011L UI on will open up the main menu. +- Disabled Server Notifications by default. +- Added 2009E-HD's rocket launcher to the 3D Avatar Preview. Fixes: - Fixed the URL Override box in the Asset SDK not being functional. @@ -51,6 +56,9 @@ Fixes: - Fixed compatibility with 1.2.3 clientinfo.nov files in the Client SDK. - Fixed Santa's Winter Stronghold. - Fixed missing assets in some Universal maps. +- Fixed the config overriding values whenever there's an error. + - If a value is detected as an error, it will be overriden with the defaults. +- Fixed a bug where the Play and Versions tabs can be filled up with repeated entries in the Stylish style. Lite version changes: - Removed the following clients: diff --git a/scripts/batch/dev_menu.bat b/scripts/batch/dev_menu.bat index 8c2b149..d21f4cb 100644 --- a/scripts/batch/dev_menu.bat +++ b/scripts/batch/dev_menu.bat @@ -87,7 +87,6 @@ CLS ReleasePreparer.exe -release butler push Novetus bitl/novetus:windows --if-changed --userversion-file releaseversion.txt pause -del releaseversion.txt GOTO MENU :RELEASENOMAPS @@ -95,7 +94,6 @@ CLS ReleasePreparer.exe -lite butler push Novetus-Lite bitl/novetus:windows-lite --if-changed --userversion-file releasenomapsversion.txt pause -del releasenomapsversion.txt GOTO MENU :BETA @@ -103,7 +101,6 @@ CLS ReleasePreparer.exe -snapshot butler push Novetus bitl/novetus:windows-beta --if-changed --userversion-file betaversion.txt pause -del betaversion.txt GOTO MENU :RELEASE_DRY @@ -111,7 +108,6 @@ CLS ReleasePreparer.exe -release butler push Novetus bitl/novetus:windows --if-changed --userversion-file releaseversion.txt --dry-run pause -del releaseversion.txt GOTO MENU :RELEASENOMAPS_DRY @@ -119,7 +115,6 @@ CLS ReleasePreparer.exe -lite butler push Novetus-Lite bitl/novetus:windows-lite --if-changed --userversion-file releasenomapsversion.txt --dry-run pause -del releasenomapsversion.txt GOTO MENU :BETA_DRY @@ -127,7 +122,6 @@ CLS ReleasePreparer.exe -snapshot butler push Novetus bitl/novetus:windows-beta --if-changed --userversion-file betaversion.txt --dry-run pause -del betaversion.txt GOTO MENU :VALIDATE diff --git a/scripts/game/2011M/CSMPFunctions.lua b/scripts/game/2011M/CSMPFunctions.lua index 2a14a44..dddb857 100644 --- a/scripts/game/2011M/CSMPFunctions.lua +++ b/scripts/game/2011M/CSMPFunctions.lua @@ -575,7 +575,14 @@ end rbxversion = version() print("ROBLOX Client version '" .. rbxversion .. "' loaded.") -function CSServer(Port,PlayerLimit,ClientEXEMD5,LauncherMD5,ClientScriptMD5,Notifications,ValidatedScripts) +function CSServer(Port,PlayerLimit,ClientEXEMD5,LauncherMD5,ClientScriptMD5,Notifications,ValidatedScripts,NewGUI) + pcall(function() + id = -1 + if NewGUI == true then + id = 1337 + end + game:SetPlaceID(id, false) + end) dofile("rbxasset://scripts\\cores\\StarterScriptServer.lua") assert((type(Port)~="number" or tonumber(Port)~=nil or Port==nil),"CSRun Error: Port must be nil or a number.") local NetworkServer=game:GetService("NetworkServer") @@ -817,7 +824,14 @@ function CSSolo(UserID,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID, end end -function CSStudio() +function CSStudio(NewGUI) + pcall(function() + id = -1 + if NewGUI == true then + id = 1337 + end + game:SetPlaceID(id, false) + end) dofile("rbxasset://scripts\\cores\\StarterScript.lua") end diff --git a/scripts/game/2011M/cores/SettingsScript.lua b/scripts/game/2011M/cores/SettingsScript.lua index 426551b..c008849 100644 --- a/scripts/game/2011M/cores/SettingsScript.lua +++ b/scripts/game/2011M/cores/SettingsScript.lua @@ -2061,17 +2061,17 @@ local function createLeaveConfirmationMenu(baseZIndex,shield) noButton.Parent = frame noButton.ZIndex = baseZIndex + 4 noButton.MouseButton1Click:connect(function() - if escPressed then + --[[if escPressed then escPressed = false shield.Settings.SettingsStyle.Parent:TweenPosition(UDim2.new(0.5, -262,-0.5, -200),Enum.EasingDirection.InOut,Enum.EasingStyle.Sine,tweenTime,true) shield.Settings.SettingsStyle.Parent:TweenSize(UDim2.new(0,525,0,430),Enum.EasingDirection.InOut,Enum.EasingStyle.Sine,tweenTime,true) shield.Visible = false game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.SettingsButton.Active = true - else + else]] goToMenu(shield.Settings.SettingsStyle,"GameMainMenu","down") shield.Settings:TweenSize(UDim2.new(0,525,0,430),Enum.EasingDirection.InOut,Enum.EasingStyle.Sine,tweenTime,true) - end + --end end) local leaveText = Instance.new("TextLabel") @@ -2841,15 +2841,38 @@ if UserSettings then end) -- add in hotkey for leaving game - --game:GetService("GuiService"):AddKey(escKey) + -- edit: opens the menu instead. makes more sense. + game:GetService("GuiService"):AddKey(escKey) game:GetService("GuiService").KeyPressed:connect(function(key) if key == escKey then - --[[escPressed = true - goToMenu(settingsFrame,"LeaveConfirmationMenu","down") - shield.Visible = true - settingsButton.Active = false - settingsFrame.Parent:TweenPosition(UDim2.new(0.5, -262,0.5, -200),Enum.EasingDirection.InOut,Enum.EasingStyle.Sine,tweenTime,true) - settingsFrame.Parent:TweenSize(UDim2.new(0,525,0,430),Enum.EasingDirection.InOut,Enum.EasingStyle.Sine,tweenTime,true)]] + if escPressed ~= true then + escPressed = true + game.GuiService:AddCenterDialog(shield, Enum.CenterDialogType.ModalDialog, + --showFunction + function() + settingsButton.Active = false + updateCameraDropDownSelection(UserSettings().GameSettings.ControlMode.Name) + + if syncVideoCaptureSetting then + syncVideoCaptureSetting() + end + + goToMenu(settingsFrame,"GameMainMenu","right") + shield.Visible = true + settingsFrame.Parent:TweenPosition(UDim2.new(0.5, -262,0.5, -200),Enum.EasingDirection.InOut,Enum.EasingStyle.Sine,tweenTime,true) + settingsFrame.Parent:TweenSize(UDim2.new(0,525,0,430),Enum.EasingDirection.InOut,Enum.EasingStyle.Sine,tweenTime,true) + end, + nil) + else + escPressed = false + resumeGameFunction(shield) + game.GuiService:RemoveCenterDialog(shield) + end + --goToMenu(settingsFrame,"LeaveConfirmationMenu","down") + --shield.Visible = true + --settingsButton.Active = false + --settingsFrame.Parent:TweenPosition(UDim2.new(0.5, -262,0.5, -200),Enum.EasingDirection.InOut,Enum.EasingStyle.Sine,tweenTime,true) + --settingsFrame.Parent:TweenSize(UDim2.new(0,525,0,430),Enum.EasingDirection.InOut,Enum.EasingStyle.Sine,tweenTime,true) end end) @@ -2893,6 +2916,8 @@ if UserSettings then shield.Visible = true settingsFrame.Parent:TweenPosition(UDim2.new(0.5, -262,0.5, -200),Enum.EasingDirection.InOut,Enum.EasingStyle.Sine,tweenTime,true) settingsFrame.Parent:TweenSize(UDim2.new(0,525,0,430),Enum.EasingDirection.InOut,Enum.EasingStyle.Sine,tweenTime,true) + --hack so we can hide the main menu with esc if we clicked on the button + escPressed = true end, --hideFunction function() @@ -2900,6 +2925,8 @@ if UserSettings then settingsFrame.Parent:TweenSize(UDim2.new(0,525,0,430),Enum.EasingDirection.InOut,Enum.EasingStyle.Sine,tweenTime,true) shield.Visible = false settingsButton.Active = true + --similar hack + escPressed = false end ) end) diff --git a/scripts/launcher/3DView/3DView.rbxl b/scripts/launcher/3DView/3DView.rbxl index 51dc5c0..5ca50cb 100644 --- a/scripts/launcher/3DView/3DView.rbxl +++ b/scripts/launcher/3DView/3DView.rbxl @@ -473,18 +473,18 @@ null 0 - -12.871439 - 27.7626457 - -18.5925331 - -0.880598187 - 0.290444404 - -0.37441811 - -1.49011612e-008 - 0.790138721 - 0.612928033 - 0.47386378 - 0.539743304 - -0.695794702 + -15.8144407 + 27.562851 + -16.619154 + -0.715869188 + 0.419248611 + -0.558356404 + 1.49011612e-008 + 0.799669027 + 0.600441039 + 0.698234439 + 0.429837227 + -0.572458386 -6.88076401 @@ -2760,15 +2760,133 @@ script.Parent.Activated:connect(onActivated) + + + true + + -1 + -0.75 + 0.25 + 0 + 0 + 1 + 0 + 1 + -0 + -1 + 0 + -0 + + ClassicRPGHD + rbxasset://Textures/Rocket_hd.png + true + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 199 + + -205.5 + 12.7999992 + -449 + 4.71794515e-009 + 7.52472307e-010 + 1 + -7.17136983e-012 + 1 + 7.52472307e-010 + -1 + 7.17136983e-012 + -4.71794515e-009 + + true + 0.5 + 2 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + 256 + Handle + 0.400000006 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + true + 1 + + 4 + 0.800000012 + 1 + + + + + 2 + 2 + rbxasset://Fonts/rocketlauncher_hd.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 0.75 + 0.75 + 0.75 + + rbxasset://Textures/rocketlaunchertex.png + + 1 + 1 + 1 + + true + + + + - + Inventory 0 true - + 0 @@ -2788,7 +2906,7 @@ script.Parent.Activated:connect(onActivated) null true - + true @@ -2809,7 +2927,7 @@ script.Parent.Activated:connect(onActivated) true - + false -0.5 @@ -2878,7 +2996,7 @@ script.Parent.Activated:connect(onActivated) 4 - + 2 2 @@ -2905,7 +3023,7 @@ script.Parent.Activated:connect(onActivated) - + false @@ -2939,7 +3057,7 @@ script.Parent.Activated:connect(onActivated) true - + Lunged false @@ -2947,7 +3065,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -2968,7 +3086,7 @@ script.Parent.Activated:connect(onActivated) true - + false -0.5 @@ -3037,7 +3155,7 @@ script.Parent.Activated:connect(onActivated) 6 - + 2 2 @@ -3064,14 +3182,14 @@ script.Parent.Activated:connect(onActivated) - + Lunged false true - + false @@ -3106,7 +3224,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -3127,7 +3245,7 @@ script.Parent.Activated:connect(onActivated) true - + false -0.5 @@ -3196,7 +3314,7 @@ script.Parent.Activated:connect(onActivated) 4 - + 2 2 @@ -3223,14 +3341,14 @@ script.Parent.Activated:connect(onActivated) - + Lunged false true - + false @@ -3265,7 +3383,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -3286,7 +3404,7 @@ script.Parent.Activated:connect(onActivated) true - + false -0.5 @@ -3355,7 +3473,7 @@ script.Parent.Activated:connect(onActivated) 2 - + 2 2 @@ -3382,7 +3500,7 @@ script.Parent.Activated:connect(onActivated) - + false @@ -3416,7 +3534,7 @@ script.Parent.Activated:connect(onActivated) true - + Lunged false @@ -3424,7 +3542,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -3445,7 +3563,7 @@ script.Parent.Activated:connect(onActivated) true - + false -0.5 @@ -3514,7 +3632,7 @@ script.Parent.Activated:connect(onActivated) 4 - + 2 2 @@ -3540,7 +3658,7 @@ script.Parent.Activated:connect(onActivated) true - + true Sparkles @@ -3549,7 +3667,7 @@ script.Parent.Activated:connect(onActivated) - + false @@ -3583,7 +3701,7 @@ script.Parent.Activated:connect(onActivated) true - + Lunged false @@ -3591,7 +3709,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -3612,7 +3730,7 @@ script.Parent.Activated:connect(onActivated) true - + false -0.5 @@ -3681,7 +3799,7 @@ script.Parent.Activated:connect(onActivated) 6 - + 2 2 @@ -3708,7 +3826,7 @@ script.Parent.Activated:connect(onActivated) - + false @@ -3742,7 +3860,7 @@ script.Parent.Activated:connect(onActivated) true - + Lunged false @@ -3750,7 +3868,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -3771,7 +3889,7 @@ script.Parent.Activated:connect(onActivated) true - + false -0.5 @@ -3840,7 +3958,7 @@ script.Parent.Activated:connect(onActivated) 2 - + 2 2 @@ -3867,7 +3985,7 @@ script.Parent.Activated:connect(onActivated) - + false @@ -3901,7 +4019,7 @@ script.Parent.Activated:connect(onActivated) true - + Lunged false @@ -3909,7 +4027,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -3930,7 +4048,7 @@ script.Parent.Activated:connect(onActivated) true - + false -0.5 @@ -3999,7 +4117,7 @@ script.Parent.Activated:connect(onActivated) 5 - + 2 2 @@ -4026,7 +4144,7 @@ script.Parent.Activated:connect(onActivated) - + false @@ -4060,7 +4178,7 @@ script.Parent.Activated:connect(onActivated) true - + Lunged false @@ -4069,7 +4187,7 @@ script.Parent.Activated:connect(onActivated) - + 0 @@ -4089,7 +4207,7 @@ script.Parent.Activated:connect(onActivated) null true - + true @@ -4110,124 +4228,6 @@ script.Parent.Activated:connect(onActivated) rbxasset://../../../shareddata/RiseOfTheKillbots/textures/shotgun_icon.png true - - - false - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - 194 - - 0.434713304 - 5.19890928 - 51.0338974 - 0.765911818 - -0.030124668 - -0.642238379 - 0.0399680249 - 0.999200642 - 0.000796274282 - 0.641700983 - -0.0262788739 - 0.766503751 - - false - 0.5 - 0 - 0.300000012 - -0.5 - 0.5 - 0 - 0 - -0.5 - 0.5 - 0 - 0 - false - 256 - Handle - 0 - -0.5 - 0.5 - 0 - 0 - - 0 - 0 - 0 - - -0.5 - 0.5 - 0 - 0 - 0 - - 0 - 0 - 0 - - true - 1 - - 1 - 1 - 2 - - - - - 2 - 2 - rbxasset://../../../shareddata/RiseOfTheKillbots/fonts/Shotgun.mesh - 5 - Mesh - - 0 - 0 - 0 - - - 1 - 1 - 1 - - rbxasset://../../../shareddata/RiseOfTheKillbots/textures/Shotgun.png - - 97 - 97 - 97 - - true - - - - - - - true - - 0 - -0.200000003 - 0 - 0.999200881 - 0.0399680398 - 0 - -0.0399680361 - 0.999201 - 0 - 0 - -0 - 1 - - Pistol - rbxasset://../../../shareddata/RiseOfTheKillbots/textures/pistol_icon.png - true - false @@ -4294,10 +4294,128 @@ script.Parent.Activated:connect(onActivated) 1 1 - 1 + 2 + + 2 + 2 + rbxasset://../../../shareddata/RiseOfTheKillbots/fonts/Shotgun.mesh + 5 + Mesh + + 0 + 0 + 0 + + + 1 + 1 + 1 + + rbxasset://../../../shareddata/RiseOfTheKillbots/textures/Shotgun.png + + 97 + 97 + 97 + + true + + + + + + + true + + 0 + -0.200000003 + 0 + 0.999200881 + 0.0399680398 + 0 + -0.0399680361 + 0.999201 + 0 + 0 + -0 + 1 + + Pistol + rbxasset://../../../shareddata/RiseOfTheKillbots/textures/pistol_icon.png + true + + + + false + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + 194 + + 0.434713304 + 5.19890928 + 51.0338974 + 0.765911818 + -0.030124668 + -0.642238379 + 0.0399680249 + 0.999200642 + 0.000796274282 + 0.641700983 + -0.0262788739 + 0.766503751 + + false + 0.5 + 0 + 0.300000012 + -0.5 + 0.5 + 0 + 0 + -0.5 + 0.5 + 0 + 0 + false + 256 + Handle + 0 + -0.5 + 0.5 + 0 + 0 + + 0 + 0 + 0 + + -0.5 + 0.5 + 0 + 0 + 0 + + 0 + 0 + 0 + + true + 1 + + 1 + 1 + 1 + + + 2 2 @@ -4326,14 +4444,14 @@ script.Parent.Activated:connect(onActivated) - + CameraType 0 true - + 0 @@ -4353,7 +4471,7 @@ script.Parent.Activated:connect(onActivated) null true - + true @@ -4374,7 +4492,7 @@ script.Parent.Activated:connect(onActivated) rbxasset://textures/BrigandsSword.png true - + false -0.5 @@ -4443,7 +4561,7 @@ script.Parent.Activated:connect(onActivated) 4 - + 2 2 @@ -4470,14 +4588,14 @@ script.Parent.Activated:connect(onActivated) - + Lunged false true - + false @@ -4512,7 +4630,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -4533,7 +4651,7 @@ script.Parent.Activated:connect(onActivated) rbxasset://textures/Cheezburger.png true - + false -0.5 @@ -4602,7 +4720,7 @@ script.Parent.Activated:connect(onActivated) 1 - + 2 2 @@ -4629,7 +4747,7 @@ script.Parent.Activated:connect(onActivated) - + false @@ -4665,7 +4783,7 @@ script.Parent.Activated:connect(onActivated) true - + Eat false @@ -4673,7 +4791,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -4694,7 +4812,7 @@ script.Parent.Activated:connect(onActivated) rbxasset://textures/NinjaStar.png true - + false -0.5 @@ -4763,7 +4881,7 @@ script.Parent.Activated:connect(onActivated) 1 - + 2 2 @@ -4791,7 +4909,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -4812,7 +4930,7 @@ script.Parent.Activated:connect(onActivated) rbxasset://textures/Coil.png true - + false -0.5 @@ -4881,7 +4999,7 @@ script.Parent.Activated:connect(onActivated) 2 - + 2 2 @@ -4909,7 +5027,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -4930,7 +5048,7 @@ script.Parent.Activated:connect(onActivated) rbxasset://textures/BloxyCola.png true - + false -0.5 @@ -4999,7 +5117,7 @@ script.Parent.Activated:connect(onActivated) 1 - + 2 2 @@ -5026,7 +5144,7 @@ script.Parent.Activated:connect(onActivated) - + false @@ -5062,7 +5180,7 @@ script.Parent.Activated:connect(onActivated) true - + Drink false @@ -5070,7 +5188,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -5091,7 +5209,7 @@ script.Parent.Activated:connect(onActivated) rbxasset://textures/EnergySword.png true - + false -0.5 @@ -5160,7 +5278,7 @@ script.Parent.Activated:connect(onActivated) 4 - + 2 2 @@ -5186,7 +5304,7 @@ script.Parent.Activated:connect(onActivated) true - + true Sparkles @@ -5196,7 +5314,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -5217,7 +5335,7 @@ script.Parent.Activated:connect(onActivated) rbxasset://textures/Banhammer.png true - + false -0.5 @@ -5286,7 +5404,7 @@ script.Parent.Activated:connect(onActivated) 1 - + 2 2 @@ -5313,7 +5431,7 @@ script.Parent.Activated:connect(onActivated) - + false @@ -5467,7 +5585,7 @@ script.Parent.Activated:connect(onActivated) true - + CurAnim homerun @@ -5475,7 +5593,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -5496,7 +5614,7 @@ script.Parent.Activated:connect(onActivated) rbxasset://textures/Tripmine.png true - + false -0.5 @@ -5565,7 +5683,7 @@ script.Parent.Activated:connect(onActivated) 2 - + 2 2 @@ -5593,7 +5711,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -5614,7 +5732,7 @@ script.Parent.Activated:connect(onActivated) rbxasset://textures/Claw.png true - + false -0.5 @@ -5683,7 +5801,7 @@ script.Parent.Activated:connect(onActivated) 2 - + 2 2 @@ -5711,7 +5829,7 @@ script.Parent.Activated:connect(onActivated) - + true @@ -5732,7 +5850,7 @@ script.Parent.Activated:connect(onActivated) rbxasset://textures/LaserPistol.png true - + false -0.5 @@ -5801,7 +5919,7 @@ script.Parent.Activated:connect(onActivated) 1 - + 2 2 @@ -5828,7 +5946,7 @@ script.Parent.Activated:connect(onActivated) - + false @@ -5862,7 +5980,7 @@ script.Parent.Activated:connect(onActivated) true - + Shoot false @@ -5872,19 +5990,19 @@ script.Parent.Activated:connect(onActivated) - + ChangeHistoryService true - + Instance true - + Instance true diff --git a/scripts/launcher/info.ini b/scripts/launcher/info.ini index 3aef092..9e35fee 100644 --- a/scripts/launcher/info.ini +++ b/scripts/launcher/info.ini @@ -8,4 +8,5 @@ ExtendedVersionNumber=True ExtendedVersionEditChangelog=False ExtendedVersionTemplate=%version% v12.2021.%extended-revision%%lite% ExtendedVersionRevision=1 -IsLite=False \ No newline at end of file +IsLite=False +InitialBootup=True diff --git a/scripts/launcher/splashes-special.txt b/scripts/launcher/splashes-special.txt index ba6f1d0..6cbe31e 100644 --- a/scripts/launcher/splashes-special.txt +++ b/scripts/launcher/splashes-special.txt @@ -8,9 +8,9 @@ Happy Birthday, Roblox!|Roblox was released to the public on September 1st, 2006 Happy Leif Erikson Day! HINGA DINGA DURGEN!|10/9 I used to wonder what friendship could be!|10/10 Happy Birthday, Novetus!|Novetus was announced directly after the cancellation of RBXLegacy.|10/27 +Happy Halloween!|Spooky, scary skeletons send shivers down your spine...|10/31 Adventure Awaits...|The first trailer used to promote Roblox to the public was%newline%uploaded by John Shedletsky on November 9th, 2006.|11/9 Welcome to %version%!|Hi!|11/11 -Happy Halloween!|Spooky, scary skeletons send shivers down your spine...|10/31 Merry Christmas!|...and a happy new year!|12/24-12/25 Happy New Year!|Have a happy %nextyear%!|12/31 Happy Out-of-Touch Thursday!|You're out of touch, I'm out of time.%newline%But I'm out of my head when you're not around!|Thursday \ No newline at end of file