Add spawnmenu setting

This commit is contained in:
LostTrackpad 2024-06-17 16:56:36 +07:00
parent de0a2b16bd
commit 234bd45a87
6 changed files with 14 additions and 6 deletions

View file

@ -410,4 +410,12 @@ hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function()
-- end -- end
-- panel:AddItem(LoadoutMenuButton) -- panel:AddItem(LoadoutMenuButton)
end) end)
spawnmenu.AddToolMenuOption("Beatrun", "Server", "beatrun_serverfun", "Fun", "", "", function(panel)
panel:ClearControls()
panel:SetName("Fun/Experimental Settings")
panel:CheckBox("Cruelty Parkour (?)", "Beatrun_CrueltyParkour")
panel:ControlHelp("\"Funny\" optional feature that blocks some parkour moves and changes some moves\' behavior with a different weapon out.")
end)
end) end)

View file

@ -1 +1 @@
RunnerHandsOnly = CreateConVar("Beatrun_RunnerHandsOnly", 0, {FCVAR_ARCHIVE, FCVAR_REPLICATED}, "Also known as \"Cruelty Mode\".\nDisables some Beatrun parkour abilities using anything but the Beatrun hands when enabled.", 0, 1) CrueltyParkour = CreateConVar("Beatrun_CrueltyParkour", 0, {FCVAR_ARCHIVE, FCVAR_REPLICATED}, "Also known as \"Cruelty Mode\".\nDisables some Beatrun parkour abilities using anything but the Beatrun hands when enabled.", 0, 1)

View file

@ -73,7 +73,7 @@ hook.Add("SetupMove", "Grapple", function(ply, mv, cmd)
local dist = trout.HitPos:DistToSqr(mv:GetOrigin()) local dist = trout.HitPos:DistToSqr(mv:GetOrigin())
if trout.Fraction > 0 and dist < 2750000 and dist > 90000 and mv:KeyPressed(IN_JUMP) then if trout.Fraction > 0 and dist < 2750000 and dist > 90000 and mv:KeyPressed(IN_JUMP) then
if RunnerHandsOnly:GetBool() and !ply:UsingRH() then if CrueltyParkour:GetBool() and !ply:UsingRH() then
else else
local vel = mv:GetVelocity() local vel = mv:GetVelocity()
vel.z = -math.abs(vel.z) vel.z = -math.abs(vel.z)

View file

@ -190,7 +190,7 @@ local function Swingbar(ply, mv, cmd)
SwingbarThink(ply, mv, cmd) SwingbarThink(ply, mv, cmd)
end end
if RunnerHandsOnly:GetBool() and !ply:UsingRH() then if CrueltyParkour:GetBool() and !ply:UsingRH() then
ParkourEvent("swingjump", ply) ParkourEvent("swingjump", ply)
local ang = cmd:GetViewAngles() local ang = cmd:GetViewAngles()

View file

@ -522,12 +522,12 @@ end
local vecdir = Vector(1000, 1000, 1000) local vecdir = Vector(1000, 1000, 1000)
hook.Add("SetupMove", "Wallrunning", function(ply, mv, cmd) hook.Add("SetupMove", "Wallrunning", function(ply, mv, cmd)
if ply:GetWallrun() == nil or not ply:Alive() or (RunnerHandsOnly:GetBool() and !(ply:UsingRH())) then if ply:GetWallrun() == nil or not ply:Alive() or (CrueltyParkour:GetBool() and !(ply:UsingRH())) then
ply:SetWallrun(0) ply:SetWallrun(0)
end end
if ply:GetWallrun() == 0 and mv:GetVelocity().z > -450 and not ply:OnGround() and mv:KeyDown(IN_FORWARD) and not ply:Crouching() and not mv:KeyDown(IN_DUCK) and ply:GetMoveType() ~= MOVETYPE_NOCLIP and ply:WaterLevel() < 1 then if ply:GetWallrun() == 0 and mv:GetVelocity().z > -450 and not ply:OnGround() and mv:KeyDown(IN_FORWARD) and not ply:Crouching() and not mv:KeyDown(IN_DUCK) and ply:GetMoveType() ~= MOVETYPE_NOCLIP and ply:WaterLevel() < 1 then
if (RunnerHandsOnly:GetBool() and (ply:GetActiveWeapon():GetClass() != "runnerhands")) then if (CrueltyParkour:GetBool() and (ply:GetActiveWeapon():GetClass() != "runnerhands")) then
else else
WallrunningCheck(ply, mv, cmd) WallrunningCheck(ply, mv, cmd)
end end

View file

@ -138,7 +138,7 @@ local function ZiplineThink(ply, mv, cmd, zipline)
dir:Mul(-1) dir:Mul(-1)
end end
if fraction >= 1 or cmd:KeyDown(IN_DUCK) or (RunnerHandsOnly:GetBool() and !ply:UsingRH()) then if fraction >= 1 or cmd:KeyDown(IN_DUCK) or (CrueltyParkour:GetBool() and !ply:UsingRH()) then
ply:SetZipline(nil) ply:SetZipline(nil)
ply:SetMoveType(MOVETYPE_WALK) ply:SetMoveType(MOVETYPE_WALK)
ply:SetCrouchJumpBlocked(true) ply:SetCrouchJumpBlocked(true)