2009l fix
This commit is contained in:
parent
e6d2858ccf
commit
cfac86bc5d
|
|
@ -1,4 +1,24 @@
|
||||||
1.3 Snapshot v22.8292.27213.1
|
1.3 Snapshot v22.8293.20101.1
|
||||||
|
Enhancements:
|
||||||
|
Fixes:
|
||||||
|
- Fixed an issue where you couldn't respawn in 2009L Play Solo.
|
||||||
|
- Updated the Legacy Launcher.
|
||||||
|
----------------------------------------------------------------------------
|
||||||
|
1.3 Snapshot v22.8293.20101.1
|
||||||
|
Enhancements:
|
||||||
|
- Added the following Place Contest (August 2022) entries:
|
||||||
|
- Lachrymogenic - Lachrys Disorderly Deathmatch
|
||||||
|
- Added a new Rise of the Killbots map: Haunted Mansion!
|
||||||
|
- Added NovetusCMD mode to the Novetus Console.
|
||||||
|
- You are now able to launch any client script type! See the help list for info.
|
||||||
|
- Added the "clear" command to the Novetus Console.
|
||||||
|
- Changed the Novetus Console font.
|
||||||
|
|
||||||
|
Fixes:
|
||||||
|
- Fixed a bug where -nofilelist couldn't be used.
|
||||||
|
- Removed commands used in previous versions of the Novetus Console.
|
||||||
|
----------------------------------------------------------------------------
|
||||||
|
1.3 Snapshot v22.8292.27609.1
|
||||||
Notes:
|
Notes:
|
||||||
- The Novetus/Roblox soundtrack has been removed to respect the rights of the original copyright holders.
|
- The Novetus/Roblox soundtrack has been removed to respect the rights of the original copyright holders.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,8 +39,8 @@ ECHO.
|
||||||
ECHO 1 - Play
|
ECHO 1 - Play
|
||||||
ECHO 2 = Install Required Dependencies
|
ECHO 2 = Install Required Dependencies
|
||||||
ECHO 3 - Novetus SDK
|
ECHO 3 - Novetus SDK
|
||||||
ECHO 4 - Novetus CMD
|
ECHO 4 - Novetus Console (Server Mode)
|
||||||
ECHO 5 - Novetus CMD Help
|
ECHO 5 - Novetus Console Help
|
||||||
ECHO 6 - Install URI
|
ECHO 6 - Install URI
|
||||||
ECHO 7 - Exit
|
ECHO 7 - Exit
|
||||||
ECHO.
|
ECHO.
|
||||||
|
|
@ -57,10 +57,12 @@ IF %M%==3 start "" "%CD%/bin/Novetus.exe" -sdk
|
||||||
IF %M%==3 EXIT
|
IF %M%==3 EXIT
|
||||||
|
|
||||||
IF %M%==4 CLS
|
IF %M%==4 CLS
|
||||||
IF %M%==4 "bin/NovetusCMD.exe"
|
IF %M%==4 start "" "%CD%/bin/Novetus.exe" -cmd -cmdmode
|
||||||
|
IF %M%==4 EXIT
|
||||||
|
|
||||||
IF %M%==5 CLS
|
IF %M%==5 CLS
|
||||||
IF %M%==5 "bin/NovetusCMD.exe" -help
|
IF %M%==5 start "" "%CD%/bin/Novetus.exe" -cmd -help
|
||||||
|
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/NovetusURI.exe"
|
||||||
|
|
|
||||||
|
|
@ -620,22 +620,24 @@ function CSServer(Port,PlayerLimit,ClientEXEMD5,LauncherMD5,ClientScriptMD5,Noti
|
||||||
|
|
||||||
pcall(function() _G.CSScript_OnPlayerAdded(Player) end)
|
pcall(function() _G.CSScript_OnPlayerAdded(Player) end)
|
||||||
|
|
||||||
while true do
|
coroutine.resume(coroutine.create(function()
|
||||||
wait(0.001)
|
while true do
|
||||||
if (game.Lighting:findFirstChild("DisableRespawns") == nil) then
|
wait(0.001)
|
||||||
if (Player.Character ~= nil) then
|
if (game.Lighting:findFirstChild("DisableRespawns") == nil) then
|
||||||
if (Player.Character:FindFirstChild("Humanoid") and (Player.Character.Humanoid.Health == 0)) then
|
if (Player.Character ~= nil) then
|
||||||
wait(5)
|
if (Player.Character:FindFirstChild("Humanoid") and (Player.Character.Humanoid.Health == 0)) then
|
||||||
Player:LoadCharacter()
|
wait(5)
|
||||||
LoadCharacterNew(newWaitForChildSecurity(Player,"Appearance"),Player.Character)
|
Player:LoadCharacter()
|
||||||
elseif (Player.Character.Parent == nil) then
|
LoadCharacterNew(newWaitForChildSecurity(Player,"Appearance"),Player.Character)
|
||||||
wait(5)
|
elseif (Player.Character.Parent == nil) then
|
||||||
Player:LoadCharacter() -- to make sure nobody is deleted.
|
wait(5)
|
||||||
LoadCharacterNew(newWaitForChildSecurity(Player,"Appearance"),Player.Character)
|
Player:LoadCharacter() -- to make sure nobody is deleted.
|
||||||
|
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")
|
||||||
|
|
@ -765,22 +767,26 @@ function CSSolo(UserID,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,
|
||||||
pcall(function() _G.CSScript_Update() end)
|
pcall(function() _G.CSScript_Update() end)
|
||||||
end
|
end
|
||||||
end))
|
end))
|
||||||
while true do
|
|
||||||
wait(0.001)
|
coroutine.resume(coroutine.create(function()
|
||||||
if (game.Lighting:findFirstChild("DisableRespawns") == nil) then
|
while true do
|
||||||
if (plr.Character ~= nil) then
|
wait(0.001)
|
||||||
if (plr.Character:findFirstChild("Humanoid") and (plr.Character.Humanoid.Health == 0)) then
|
print("test")
|
||||||
wait(5)
|
if (game.Lighting:findFirstChild("DisableRespawns") == nil) then
|
||||||
plr:LoadCharacter()
|
if (plr.Character ~= nil) then
|
||||||
LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character)
|
if (plr.Character:findFirstChild("Humanoid") and (plr.Character.Humanoid.Health == 0)) then
|
||||||
elseif (plr.Character.Parent == nil) then
|
wait(5)
|
||||||
wait(5)
|
plr:LoadCharacter()
|
||||||
plr:LoadCharacter() -- to make sure nobody is deleted.
|
LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character)
|
||||||
LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character)
|
elseif (plr.Character.Parent == nil) then
|
||||||
|
wait(5)
|
||||||
|
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()
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ UserAgentRegisterClient1=2007M
|
||||||
UserAgentRegisterClient2=2010L
|
UserAgentRegisterClient2=2010L
|
||||||
ExtendedVersionNumber=True
|
ExtendedVersionNumber=True
|
||||||
ExtendedVersionEditChangelog=True
|
ExtendedVersionEditChangelog=True
|
||||||
//ExtendedVersionTemplate=%version% v8.2022.%extended-revision%%lite%
|
//ExtendedVersionTemplate=%version% v?.2022.%extended-revision%%lite%
|
||||||
ExtendedVersionTemplate=%version% Snapshot v22.%build%.%revision%.%extended-revision%
|
ExtendedVersionTemplate=%version% Snapshot v22.%build%.%revision%.%extended-revision%
|
||||||
ExtendedVersionRevision=1
|
ExtendedVersionRevision=1
|
||||||
IsLite=False
|
IsLite=False
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue