From 234bd45a870ee0627e8751c8b205ae6ea8575182 Mon Sep 17 00:00:00 2001 From: LostTrackpad Date: Mon, 17 Jun 2024 16:56:36 +0700 Subject: [PATCH] Add spawnmenu setting --- .../gamemodes/beatrun/gamemode/cl/ToolMenuSettings.lua | 8 ++++++++ beatrun/gamemodes/beatrun/gamemode/preexecute/shared.lua | 2 +- beatrun/gamemodes/beatrun/gamemode/sh/Grapple.lua | 2 +- beatrun/gamemodes/beatrun/gamemode/sh/Swingbar.lua | 2 +- beatrun/gamemodes/beatrun/gamemode/sh/Wallrun.lua | 4 ++-- beatrun/gamemodes/beatrun/gamemode/sh/Zipline.lua | 2 +- 6 files changed, 14 insertions(+), 6 deletions(-) diff --git a/beatrun/gamemodes/beatrun/gamemode/cl/ToolMenuSettings.lua b/beatrun/gamemodes/beatrun/gamemode/cl/ToolMenuSettings.lua index 16ca803..7afd21e 100644 --- a/beatrun/gamemodes/beatrun/gamemode/cl/ToolMenuSettings.lua +++ b/beatrun/gamemodes/beatrun/gamemode/cl/ToolMenuSettings.lua @@ -410,4 +410,12 @@ hook.Add("PopulateToolMenu", "Beatrun_ToolMenu", function() -- end -- panel:AddItem(LoadoutMenuButton) 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) diff --git a/beatrun/gamemodes/beatrun/gamemode/preexecute/shared.lua b/beatrun/gamemodes/beatrun/gamemode/preexecute/shared.lua index 6c6c7fc..4c267d9 100644 --- a/beatrun/gamemodes/beatrun/gamemode/preexecute/shared.lua +++ b/beatrun/gamemodes/beatrun/gamemode/preexecute/shared.lua @@ -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) \ No newline at end of file +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) \ No newline at end of file diff --git a/beatrun/gamemodes/beatrun/gamemode/sh/Grapple.lua b/beatrun/gamemodes/beatrun/gamemode/sh/Grapple.lua index 17c25bd..d6139c4 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sh/Grapple.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sh/Grapple.lua @@ -73,7 +73,7 @@ hook.Add("SetupMove", "Grapple", function(ply, mv, cmd) local dist = trout.HitPos:DistToSqr(mv:GetOrigin()) 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 local vel = mv:GetVelocity() vel.z = -math.abs(vel.z) diff --git a/beatrun/gamemodes/beatrun/gamemode/sh/Swingbar.lua b/beatrun/gamemodes/beatrun/gamemode/sh/Swingbar.lua index f3a8c95..9d56f8f 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sh/Swingbar.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sh/Swingbar.lua @@ -190,7 +190,7 @@ local function Swingbar(ply, mv, cmd) SwingbarThink(ply, mv, cmd) end - if RunnerHandsOnly:GetBool() and !ply:UsingRH() then + if CrueltyParkour:GetBool() and !ply:UsingRH() then ParkourEvent("swingjump", ply) local ang = cmd:GetViewAngles() diff --git a/beatrun/gamemodes/beatrun/gamemode/sh/Wallrun.lua b/beatrun/gamemodes/beatrun/gamemode/sh/Wallrun.lua index be869c0..4d92624 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sh/Wallrun.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sh/Wallrun.lua @@ -522,12 +522,12 @@ end local vecdir = Vector(1000, 1000, 1000) 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) 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 (RunnerHandsOnly:GetBool() and (ply:GetActiveWeapon():GetClass() != "runnerhands")) then + if (CrueltyParkour:GetBool() and (ply:GetActiveWeapon():GetClass() != "runnerhands")) then else WallrunningCheck(ply, mv, cmd) end diff --git a/beatrun/gamemodes/beatrun/gamemode/sh/Zipline.lua b/beatrun/gamemodes/beatrun/gamemode/sh/Zipline.lua index 187679a..866adf0 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sh/Zipline.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sh/Zipline.lua @@ -138,7 +138,7 @@ local function ZiplineThink(ply, mv, cmd, zipline) dir:Mul(-1) 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:SetMoveType(MOVETYPE_WALK) ply:SetCrouchJumpBlocked(true)