This commit is contained in:
lifestorm
2024-08-05 18:40:29 +03:00
parent 9f505a0646
commit c6d9b6f580
8044 changed files with 1853472 additions and 21 deletions

View File

@@ -0,0 +1,46 @@
--[[
| 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 )