Rework kickglitch again to reduce insane code

This commit is contained in:
LostTrackpad 2024-06-18 21:10:18 +07:00
parent 7df82b0bed
commit 5ef56f4d70

View file

@ -323,43 +323,26 @@ hook.Add("SetupMove", "Melee", function(ply, mv, cmd)
end end
end) end)
--hook.Add("Finishmove", "ProperKickglitch", function(ply, mv, cmd) hook.Add("Move", "KickglitchApply", function(ply,mv,cmd)
-- if !kickglitchwindow then return end if mv:KeyPressed(IN_JUMP) and ply:GetNWBool("KickglitchWindowActive", false) and !GetConVar("Beatrun_OldKickGlitch"):GetBool() then
-- if !ply:Alive() then
-- if mv:KeyDown(IN_JUMP) then else
-- print("dis shit got called") local forward = ply:EyeAngles()
-- local speedboost = ply:EyeAngles():Forward() * (32 * 0.06858125) forward.p = 0
-- forward = forward:Forward()
-- local vel = mv:GetVelocity() local speedboost = forward * (4 / 0.06858125)
-- vel.z = 300 --print(speedboost)
-- mv:SetVelocity(vel + speedboost)
-- end
--end)
hook.Add("KeyPress", "KickglitchFR", function(ply, key) --print("--")
--if !kickglitchwindow then return end
if key == IN_JUMP and ply:GetNWBool("KickglitchWindowActive", false) and !GetConVar("Beatrun_OldKickGlitch"):GetBool() then
hook.Add("FinishMove", "KickglitchApply", function(ply,mv,cmd)
if !ply:Alive() then
else
local forward = ply:EyeAngles()
forward.p = 0
forward = forward:Forward()
local speedboost = forward * (4 / 0.06858125)
--print(speedboost)
--print("--") --print(mv:GetVelocity())
local vel = mv:GetVelocity()
--print(mv:GetVelocity()) vel = vel + speedboost
local vel = mv:GetVelocity() --print("--")
vel = vel + speedboost --print(vel)
--print("--") vel.z = 300
--print(vel) mv:SetVelocity(vel)
vel.z = 300 end
mv:SetVelocity(vel)
end
hook.Remove("FinishMove", "KickglitchApply")
end)
ply:SetNWBool("KickglitchWindowActive", false) ply:SetNWBool("KickglitchWindowActive", false)
end end
end) end)