mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-05 18:36:33 +05:00
Add spawnmenu setting
This commit is contained in:
parent
de0a2b16bd
commit
234bd45a87
6 changed files with 14 additions and 6 deletions
|
@ -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)
|
||||
|
|
|
@ -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)
|
|
@ -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)
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue