2009l is actually fixed

This commit is contained in:
Bitl 2022-09-18 08:31:26 -07:00
parent ceea62b2f9
commit 5bceba6adc
4 changed files with 50 additions and 48 deletions

View File

@ -1,8 +1,12 @@
1.3 Snapshot v22.8293.20101.1 1.3 Snapshot v22.8296.15106.1
Enhancements: Enhancements:
- Novetus Console now doesn't load with the Novetus launcher by default via the bootstrapper/legacy launcher.
- Added -nocmd to launching the launcher without the Novetus Console.
Fixes: Fixes:
- Fixed an issue where you couldn't respawn in 2009L Play Solo. - Fixed an issue where you couldn't respawn in 2009L Play Solo.
- Updated the Legacy Launcher. - Updated the Legacy Launcher.
- Fixed an issue where Novetus was using abnormal CPU usage.
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
1.3 Snapshot v22.8293.20101.1 1.3 Snapshot v22.8293.20101.1
Enhancements: Enhancements:

View File

@ -37,36 +37,41 @@ ECHO.
ECHO NOVETUS LEGACY LAUNCHER ECHO NOVETUS LEGACY LAUNCHER
ECHO. ECHO.
ECHO 1 - Play ECHO 1 - Play
ECHO 2 = Install Required Dependencies ECHO 2 - Play with Console
ECHO 3 - Novetus SDK ECHO 3 = Install Required Dependencies
ECHO 4 - Novetus Console (Server Mode) ECHO 4 - Novetus SDK
ECHO 5 - Novetus Console Help ECHO 5 - Novetus Console (Server Mode)
ECHO 6 - Install URI ECHO 6 - Novetus Console Help
ECHO 7 - Exit ECHO 7 - Install URI
ECHO 8 - Exit
ECHO. ECHO.
SET /P M=Choose an option by typing the number corresponding to which utility you want to launch: SET /P M=Choose an option by typing the number corresponding to which utility you want to launch:
IF %M%==1 CLS IF %M%==1 CLS
IF %M%==1 start "" "%CD%/bin/Novetus.exe" IF %M%==1 start "" "%CD%/bin/Novetus.exe" -nocmd
IF %M%==1 EXIT IF %M%==1 EXIT
IF %M%==2 CLS IF %M%==2 CLS
IF %M%==2 call "%CD%/Novetus_dependency_installer.bat" IF %M%==2 start "" "%CD%/bin/Novetus.exe"
IF %M%==2 EXIT
IF %M%==3 CLS IF %M%==3 CLS
IF %M%==3 start "" "%CD%/bin/Novetus.exe" -sdk IF %M%==3 call "%CD%/Novetus_dependency_installer.bat"
IF %M%==3 EXIT
IF %M%==4 CLS IF %M%==4 CLS
IF %M%==4 start "" "%CD%/bin/Novetus.exe" -cmd -cmdmode IF %M%==4 start "" "%CD%/bin/Novetus.exe" -sdk
IF %M%==4 EXIT IF %M%==4 EXIT
IF %M%==5 CLS IF %M%==5 CLS
IF %M%==5 start "" "%CD%/bin/Novetus.exe" -cmd -help IF %M%==5 start "" "%CD%/bin/Novetus.exe" -cmdonly -cmdmode
IF %M%==5 EXIT IF %M%==5 EXIT
IF %M%==6 CLS IF %M%==6 CLS
IF %M%==6 start "" "%CD%/bin/NovetusURI.exe" IF %M%==6 start "" "%CD%/bin/Novetus.exe" -cmdonly -help
IF %M%==6 EXIT IF %M%==6 EXIT
IF %M%==7 CLS
IF %M%==7 start "" "%CD%/bin/NovetusURI.exe"
IF %M%==7 EXIT IF %M%==7 EXIT
IF %M%==8 EXIT
EXIT EXIT

View File

@ -620,24 +620,22 @@ function CSServer(Port,PlayerLimit,ClientEXEMD5,LauncherMD5,ClientScriptMD5,Noti
pcall(function() _G.CSScript_OnPlayerAdded(Player) end) pcall(function() _G.CSScript_OnPlayerAdded(Player) end)
coroutine.resume(coroutine.create(function() while true do
while true do wait(0.001)
wait(0.001) if (game.Lighting:findFirstChild("DisableRespawns") == nil) then
if (game.Lighting:findFirstChild("DisableRespawns") == nil) then if (Player.Character ~= nil) then
if (Player.Character ~= nil) then if (Player.Character:FindFirstChild("Humanoid") and (Player.Character.Humanoid.Health == 0)) then
if (Player.Character:FindFirstChild("Humanoid") and (Player.Character.Humanoid.Health == 0)) then wait(5)
wait(5) Player:LoadCharacter()
Player:LoadCharacter() LoadCharacterNew(newWaitForChildSecurity(Player,"Appearance"),Player.Character)
LoadCharacterNew(newWaitForChildSecurity(Player,"Appearance"),Player.Character) elseif (Player.Character.Parent == nil) then
elseif (Player.Character.Parent == nil) then wait(5)
wait(5) Player:LoadCharacter() -- to make sure nobody is deleted.
Player:LoadCharacter() -- to make sure nobody is deleted. LoadCharacterNew(newWaitForChildSecurity(Player,"Appearance"),Player.Character)
LoadCharacterNew(newWaitForChildSecurity(Player,"Appearance"),Player.Character)
end
end end
end end
end end
end)) end
end) end)
PlayerService.PlayerRemoving:connect(function(Player) PlayerService.PlayerRemoving:connect(function(Player)
print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' leaving") print("Player '" .. Player.Name .. "' with ID '" .. Player.userId .. "' leaving")
@ -757,8 +755,6 @@ function CSSolo(UserID,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,
wait(0.5) wait(0.5)
LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character,false) LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character,false)
game.Workspace:InsertContent("rbxasset://Fonts//libraries.rbxm") game.Workspace:InsertContent("rbxasset://Fonts//libraries.rbxm")
newWaitForChild(game.StarterGui, "Health")
game.StarterGui.Health:clone().Parent = plr.PlayerGui
game:GetService("Visit"):SetUploadUrl("") game:GetService("Visit"):SetUploadUrl("")
pcall(function() _G.CSScript_PostInit() end) pcall(function() _G.CSScript_PostInit() end)
coroutine.resume(coroutine.create(function() coroutine.resume(coroutine.create(function()
@ -768,25 +764,22 @@ function CSSolo(UserID,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,
end end
end)) end))
coroutine.resume(coroutine.create(function() while true do
while true do wait(0.001)
wait(0.001) if (game.Lighting:findFirstChild("DisableRespawns") == nil) then
print("test") if (plr.Character ~= nil) then
if (game.Lighting:findFirstChild("DisableRespawns") == nil) then if (plr.Character:findFirstChild("Humanoid") and (plr.Character.Humanoid.Health == 0)) then
if (plr.Character ~= nil) then wait(5)
if (plr.Character:findFirstChild("Humanoid") and (plr.Character.Humanoid.Health == 0)) then plr:LoadCharacter()
wait(5) LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character)
plr:LoadCharacter() elseif (plr.Character.Parent == nil) then
LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character) wait(5)
elseif (plr.Character.Parent == nil) then plr:LoadCharacter() -- to make sure nobody is deleted.
wait(5) LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character)
plr:LoadCharacter() -- to make sure nobody is deleted.
LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character)
end
end end
end end
end end
end)) end
end end
function CSStudio() function CSStudio()

View File

@ -10,4 +10,4 @@ ExtendedVersionEditChangelog=True
ExtendedVersionTemplate=%version% Snapshot v22.%build%.%revision%.%extended-revision% ExtendedVersionTemplate=%version% Snapshot v22.%build%.%revision%.%extended-revision%
ExtendedVersionRevision=1 ExtendedVersionRevision=1
IsLite=False IsLite=False
InitialBootup=False InitialBootup=True