add sborka

This commit is contained in:
2026-03-31 10:27:04 +03:00
commit f5e5f56c84
2345 changed files with 382127 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
hook.Add("StartCommand", "Dynamic Height + Hull Fix FIX", function()
hook.Remove("StartCommand", "Dynamic Height + Hull Fix FIX")
if DynamicCameraUpdateTrueModel then
local ECPlayerTickRate = 0.5
hook.Add("PlayerTick", "DynamicCamera:PlayerTick", function(ply)
if (ply.ECPlayerTickTime or 0) > CurTime() then return end
ply.ECPlayerTickTime = CurTime() + ECPlayerTickRate
DynamicCameraUpdateTrueModel(ply)
end)
end
end)