Compare commits

...

3 commits

Author SHA1 Message Date
relaxtakenotes
870cf943a2 lmfao 2024-12-22 16:23:52 +05:00
relaxtakenotes
40142ec39d revert grapple stuff 2024-12-22 16:15:57 +05:00
relaxtakenotes
7b03b16ea7 attempt 2 at fixing the slide-roll bug 2024-12-22 16:05:37 +05:00
3 changed files with 5 additions and 8 deletions

View file

@ -246,7 +246,7 @@ end
hook.Add("SetupMove", "qslide", function(ply, mv, cmd)
if not ply:Alive() then return end
if ply:GetSafetyRollKeyTime() > CurTime() then return end
if ply:GetSafetyRollTime() > CurTime() then return end
if not ply.OldDuckSpeed then
ply.OldDuckSpeed = ply:GetDuckSpeed()
@ -366,11 +366,8 @@ hook.Add("SetupMove", "qslide", function(ply, mv, cmd)
end
end
local isRolling = CurTime() < ply:GetSafetyRollKeyTime()
local turnedInAir = ply:GetJumpTurn()
//if ply:GetSlidingDelay() < CT and ply:Alive() and (ducking and sprinting and speed > runspeed * 0.5 or slippery and ply:GetSafetyRollTime() <= CurTime() + 0.25 or ply:GetDive() and ply:GetSafetyRollKeyTime() <= CurTime()) and onground and not sliding then
if not ply:GetSliding() and not isRolling and not turnedInAir and ply:Alive() and
(ply:GetSlidingDelay() < CT) and
if onground and not ply:GetSliding() and not ply:GetJumpTurn() and ply:Alive() and
(ply:GetSlidingDelay() < CT) and ducking and
((ducking and sprinting and speed > runspeed * 0.5) or slippery or ply:GetDive()) then
vel = math.min(speed, 541.44) * ply:GetOverdriveMult()

View file

@ -1,4 +1,4 @@
VERSION_GLOBAL = "1.0.27"
VERSION_GLOBAL = "1.0.30"
VERSION_LATEST = ""
VERSION_CHECKED = false

View file

@ -1 +1 @@
1.0.27
1.0.30