Uncomment replay code

This commit is contained in:
--global 2023-11-07 14:42:38 +07:00
parent 65b36f81b0
commit 3531c2e769
3 changed files with 17 additions and 21 deletions

View file

@ -44,7 +44,7 @@ function ENT:StartTouch(ent)
ent:SetNW2Int("CPNum", ent:GetNW2Int("CPNum", 1) + 1) ent:SetNW2Int("CPNum", ent:GetNW2Int("CPNum", 1) + 1)
if ent:GetNW2Int("CPNum", 1) > table.Count(Checkpoints) then if ent:GetNW2Int("CPNum", 1) > table.Count(Checkpoints) then
-- ReplayStop(ent) ReplayStop(ent)
FinishCourse(ent) FinishCourse(ent)
else else
ent.CPSavePos = ent:GetPos() ent.CPSavePos = ent:GetPos()

View file

@ -211,8 +211,8 @@ function PLAYER:Spawn()
ply:SetPos(Course_StartPos) ply:SetPos(Course_StartPos)
end) end)
-- ReplayStop(ply) ReplayStop(ply)
-- ReplayStart(ply) ReplayStart(ply)
end end
end end

View file

@ -129,7 +129,7 @@ if CLIENT then
LocalPlayer():EmitSound("A_TT_Finish_Positive.wav") LocalPlayer():EmitSound("A_TT_Finish_Positive.wav")
SaveCheckpointTime() SaveCheckpointTime()
-- SaveReplayData() SaveReplayData()
else else
timetext = "+" .. string.FormattedTime(math.abs(timestr), "%02i:%02i:%02i") timetext = "+" .. string.FormattedTime(math.abs(timestr), "%02i:%02i:%02i")
timecolor = color_negative timecolor = color_negative
@ -308,23 +308,19 @@ function LoadCheckpointTime()
return times or nil return times or nil
end end
-- function SaveReplayData() function SaveReplayData()
-- local replay = util.Compress(util.TableToJSON(LocalPlayer().ReplayTicks)) local replay = util.Compress(util.TableToJSON(LocalPlayer().ReplayTicks))
-- local dir = "beatrun/replays/" .. game.GetMap() .. "/" local dir = "beatrun/replays/" .. game.GetMap() .. "/"
if not replay then return end
-- if not replay then return end file.CreateDir(dir)
file.Write(dir .. Course_ID .. ".txt", replay)
-- file.CreateDir(dir) end
-- file.Write(dir .. Course_ID .. ".txt", replay) function LoadReplayData()
-- end local dir = "beatrun/replays/" .. game.GetMap() .. "/"
local replay = file.Read(dir .. Course_ID .. ".txt")
-- function LoadReplayData() replay = replay and util.JSONToTable(util.Decompress(replay))
-- local dir = "beatrun/replays/" .. game.GetMap() .. "/" return replay or nil
-- local replay = file.Read(dir .. Course_ID .. ".txt") end
-- replay = replay and util.JSONToTable(util.Decompress(replay))
-- return replay or nil
-- end
function StartCourse(spawntime) function StartCourse(spawntime)
local faststartmult = LocalPlayer():GetInfoNum("Beatrun_FastStart", 0) > 0 and 0.5 or 1 local faststartmult = LocalPlayer():GetInfoNum("Beatrun_FastStart", 0) > 0 and 0.5 or 1