Files
wnsrc/gamemodes/base/gamemode/cl_spawnmenu.lua
lifestorm 9c918c46e5 Upload
2024-08-04 23:12:27 +03:00

47 lines
1.2 KiB
Lua

--[[
| This file was obtained through the combined efforts
| of Madbluntz & Plymouth Antiquarian Society.
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
| Maloy, DrPepper10 @ RIP, Atle!
|
| Visit for more: https://plymouth.thetwilightzone.ru/
--]]
--[[---------------------------------------------------------
Spawn Menu
-----------------------------------------------------------]]
function GM:OnSpawnMenuOpen()
end
function GM:OnSpawnMenuClose()
end
concommand.Add( "+menu", function()
hook.Run( "OnSpawnMenuOpen" )
end, nil, "Opens the spawnmenu", FCVAR_DONTRECORD )
concommand.Add( "-menu", function()
if ( input.IsKeyTrapping() ) then return end
hook.Run( "OnSpawnMenuClose" )
end, nil, "Closes the spawnmenu", FCVAR_DONTRECORD )
--[[---------------------------------------------------------
Context Menu
-----------------------------------------------------------]]
function GM:OnContextMenuOpen()
end
function GM:OnContextMenuClose()
end
concommand.Add( "+menu_context", function()
hook.Run( "OnContextMenuOpen" )
end, nil, "Opens the context menu", FCVAR_DONTRECORD )
concommand.Add( "-menu_context", function()
if ( input.IsKeyTrapping() ) then return end
hook.Run( "OnContextMenuClose" )
end, nil, "Closes the context menu", FCVAR_DONTRECORD )