2023-09-13 22:15:43 -04:00
|
|
|
|
2023-09-24 01:19:23 -04:00
|
|
|
if SERVER then
|
2023-09-25 17:26:52 -04:00
|
|
|
util.AddNetworkString( "benny_syncinv" )
|
|
|
|
util.AddNetworkString( "benny_sendinvitem" )
|
|
|
|
util.AddNetworkString( "benny_discardinvitem" )
|
2023-09-24 01:19:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
concommand.Add("benny_debug_give", function(ply, cmd, args)
|
|
|
|
assert(SERVER, "not server")
|
|
|
|
local inv = ply:INV_Get()
|
|
|
|
local str = UUID_generate()
|
|
|
|
|
2023-11-16 02:11:42 -05:00
|
|
|
local class = WEAPONS[args[1]]
|
2023-09-24 01:19:23 -04:00
|
|
|
|
2023-09-24 17:50:42 -04:00
|
|
|
assert(class, "Invalid Class.")
|
|
|
|
|
2023-09-24 01:19:23 -04:00
|
|
|
local item = {
|
2023-11-16 02:11:42 -05:00
|
|
|
Class = args[1],
|
2023-11-12 19:59:12 -05:00
|
|
|
Acquisition = CurTime(),
|
2023-09-24 01:19:23 -04:00
|
|
|
}
|
|
|
|
|
2023-11-16 22:00:11 -05:00
|
|
|
if class.Features == "firearm" then
|
|
|
|
item.Loaded = ""
|
|
|
|
elseif class.Features == "magazine" then
|
|
|
|
item.Ammo = class.Ammo
|
|
|
|
end
|
|
|
|
|
2023-09-24 01:19:23 -04:00
|
|
|
inv[str] = item
|
|
|
|
|
|
|
|
-- PROTO: WriteTable.
|
2023-09-25 17:26:52 -04:00
|
|
|
net.Start( "benny_sendinvitem" )
|
2023-09-24 01:19:23 -04:00
|
|
|
net.WriteString( str )
|
|
|
|
net.WriteTable( item )
|
|
|
|
net.Send( ply )
|
2023-11-16 02:11:42 -05:00
|
|
|
end,
|
|
|
|
function(cmd, args)
|
|
|
|
args = string.Trim(args:lower())
|
|
|
|
local meow = {}
|
|
|
|
for i, v in SortedPairs( WEAPONS ) do
|
|
|
|
if string.lower(i):find(args) then
|
|
|
|
table.insert( meow, cmd .. " " .. i )
|
|
|
|
end
|
2023-09-24 01:19:23 -04:00
|
|
|
end
|
2023-11-16 02:11:42 -05:00
|
|
|
return meow
|
|
|
|
end, "arg 1: player ent index, arg 2: classname")
|
2023-09-24 01:19:23 -04:00
|
|
|
|
2023-09-24 18:38:00 -04:00
|
|
|
-- PROTO: Move this all into weapon code.
|
|
|
|
concommand.Add("benny_inv_equip", function( ply, cmd, args )
|
2023-11-17 21:12:25 -05:00
|
|
|
local wep = ply:BennyCheck()
|
2023-11-17 22:56:41 -05:00
|
|
|
if wep then
|
2023-11-29 00:39:42 -05:00
|
|
|
local hand = args[2]!=nil and tobool(args[2])
|
2023-11-17 22:56:41 -05:00
|
|
|
local id = args[1]
|
|
|
|
local swap_or_replace = tobool(args[3])
|
|
|
|
|
|
|
|
local L, R = true, false
|
|
|
|
local curr_r = wep:D_GetID( false )
|
|
|
|
local curr_l = wep:D_GetID( true )
|
|
|
|
|
|
|
|
if hand == R then
|
|
|
|
if curr_r == id then
|
|
|
|
-- We already have this equipped
|
|
|
|
return
|
|
|
|
elseif swap_or_replace and curr_r != "" then
|
|
|
|
-- We already have something equipped here, move it to the offhand
|
|
|
|
wep:BDeploy( L, curr_r )
|
|
|
|
elseif curr_l == id then
|
|
|
|
-- You have the gun we want, snatched
|
|
|
|
wep:BHolster( L )
|
|
|
|
end
|
|
|
|
wep:BDeploy( R, id )
|
|
|
|
elseif hand == L then
|
|
|
|
if curr_l == id then
|
|
|
|
-- We already have this equipped
|
|
|
|
return
|
|
|
|
elseif swap_or_replace and curr_l != "" then
|
|
|
|
-- We already have something equipped here, move it to the offhand
|
|
|
|
wep:BDeploy( R, curr_l )
|
|
|
|
elseif curr_r == id then
|
|
|
|
-- You have the gun we want, snatched
|
|
|
|
wep:BHolster( R )
|
|
|
|
end
|
|
|
|
wep:BDeploy( L, id )
|
|
|
|
end
|
|
|
|
end
|
2023-11-16 22:00:11 -05:00
|
|
|
end,
|
|
|
|
function(cmd, args)
|
|
|
|
args = string.Trim(args:lower())
|
|
|
|
local meow = {}
|
|
|
|
for i, v in SortedPairs( Entity(1):INV_Get() ) do
|
|
|
|
if string.lower(i):find(args) then
|
|
|
|
table.insert( meow, cmd .. " " .. i )
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return meow
|
|
|
|
end, "arg 1: item id, arg 2 does offhand")
|
2023-09-24 18:38:00 -04:00
|
|
|
|
2023-11-13 18:22:28 -05:00
|
|
|
-- PROTO: Move this all into weapon code.
|
|
|
|
concommand.Add("benny_inv_holster", function( ply, cmd, args )
|
2023-11-17 21:12:25 -05:00
|
|
|
local wep = ply:BennyCheck()
|
2023-11-29 02:45:36 -05:00
|
|
|
if wep then
|
|
|
|
if wep:D_GetID( false ) == args[1] then
|
|
|
|
wep:BHolster( false )
|
|
|
|
elseif wep:D_GetID( true ) == args[1] then
|
|
|
|
wep:BHolster( true )
|
|
|
|
end
|
|
|
|
end
|
2023-09-24 18:38:00 -04:00
|
|
|
end)
|
|
|
|
|
2023-09-25 17:26:52 -04:00
|
|
|
concommand.Add("benny_inv_sync", function( ply, cmd, args )
|
|
|
|
local inv = ply:INV_Get()
|
|
|
|
|
|
|
|
-- PROTO: WriteTable.
|
|
|
|
net.Start("benny_syncinv")
|
|
|
|
net.WriteUInt( table.Count( inv ), 4 )
|
|
|
|
for ID, Data in pairs( inv ) do
|
|
|
|
net.WriteString( ID )
|
|
|
|
net.WriteTable( Data )
|
|
|
|
end
|
|
|
|
net.Send( ply )
|
|
|
|
end)
|
|
|
|
|
|
|
|
concommand.Add("benny_inv_discard", function( ply, cmd, args )
|
|
|
|
local inv = ply:INV_Get()
|
|
|
|
local wep = ply:GetActiveWeapon()
|
|
|
|
local item = inv[args[1]]
|
|
|
|
-- PROTO: Check that this is the correct 'benny' weapon.
|
2023-10-09 17:05:55 -04:00
|
|
|
assert( item, "That item doesn't exist. " .. tostring(item) )
|
2023-09-25 17:26:52 -04:00
|
|
|
|
|
|
|
inv[args[1]] = nil
|
|
|
|
net.Start( "benny_discardinvitem" )
|
|
|
|
net.WriteString( args[1] )
|
|
|
|
net.Send( ply )
|
|
|
|
|
|
|
|
if wep:GetWep1() == args[1] then
|
|
|
|
wep:SetWep1( "" )
|
2023-11-17 21:12:25 -05:00
|
|
|
wep:SetWep1_Clip( "" )
|
2023-09-25 17:26:52 -04:00
|
|
|
wep:SetClip1( 0 )
|
|
|
|
end
|
|
|
|
if wep:GetWep2() == args[1] then
|
|
|
|
wep:SetWep2( "" )
|
2023-11-17 21:12:25 -05:00
|
|
|
wep:SetWep2_Clip( "" )
|
2023-09-25 17:26:52 -04:00
|
|
|
wep:SetClip2( 0 )
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- Network to client
|
|
|
|
if CLIENT then
|
|
|
|
net.Receive( "benny_syncinv", function( len, ply )
|
|
|
|
local ply = LocalPlayer()
|
|
|
|
local inv = ply:INV_Get()
|
|
|
|
|
|
|
|
table.Empty( inv )
|
|
|
|
for i=1, net.ReadUInt( 4 ) do
|
|
|
|
inv[net.ReadString()] = net.ReadTable()
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
net.Receive( "benny_sendinvitem", function( len, ply )
|
|
|
|
local ply = LocalPlayer()
|
|
|
|
ply:INV_Get()[net.ReadString()] = net.ReadTable()
|
|
|
|
end)
|
|
|
|
net.Receive( "benny_discardinvitem", function( len, ply )
|
|
|
|
local ply = LocalPlayer()
|
|
|
|
ply:INV_Get()[net.ReadString()] = nil
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2023-11-06 14:03:24 -05:00
|
|
|
hook.Add( "PlayerDeathSound", "Benny_PlayerDeathSound", function( ply )
|
|
|
|
return true -- we don't want the default sound!
|
|
|
|
end )
|
|
|
|
|
2023-09-25 17:26:52 -04:00
|
|
|
function GM:ShowHelp( ply )
|
|
|
|
if SERVER then
|
|
|
|
ply:SendLua( [[OpenSMenu()]] )
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-10-31 21:33:07 -04:00
|
|
|
function GM:ShowTeam( ply )
|
|
|
|
if SERVER then
|
|
|
|
ply:SendLua( [[OpenDeadeye()]] )
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-11-13 18:22:28 -05:00
|
|
|
function GM:ShowSpare1( ply )
|
|
|
|
if SERVER then
|
|
|
|
ply:ConCommand( "benny_inv_holster" )
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-09-24 18:38:00 -04:00
|
|
|
-- Debug inv
|
2023-09-24 17:50:42 -04:00
|
|
|
if CLIENT then
|
2023-09-25 17:26:52 -04:00
|
|
|
function GM:OnSpawnMenuOpen()
|
|
|
|
RunConsoleCommand( "benny_debug_inv" )
|
|
|
|
end
|
|
|
|
function GM:OnSpawnMenuClose()
|
|
|
|
if IsValid( base ) then base:Remove() end
|
|
|
|
end
|
|
|
|
|
|
|
|
function OpenSMenu()
|
|
|
|
if IsValid( smenu ) then smenu:Remove() return end
|
2023-11-12 04:55:08 -05:00
|
|
|
local active = GetConVar("benny_hud_tempactive"):GetString()
|
2023-09-25 17:26:52 -04:00
|
|
|
smenu = vgui.Create("DFrame")
|
2023-11-10 10:56:17 -05:00
|
|
|
smenu:SetSize( ss(1+(96+2)*4), ss(360) )
|
2023-09-25 17:26:52 -04:00
|
|
|
smenu:MakePopup()
|
|
|
|
smenu:SetKeyboardInputEnabled( false )
|
|
|
|
smenu:Center()
|
|
|
|
|
|
|
|
function smenu:Paint( w, h )
|
2023-11-12 04:55:08 -05:00
|
|
|
surface.SetDrawColor( schemes[active]["bg"] )
|
2023-09-25 17:26:52 -04:00
|
|
|
surface.DrawRect( 0, 0, w, h )
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
local itemlist = smenu:Add("DScrollPanel")
|
|
|
|
itemlist:Dock( FILL )
|
2023-10-22 00:37:12 -04:00
|
|
|
|
2023-11-03 13:20:39 -04:00
|
|
|
-- local List = vgui.Create( "DIconLayout", itemlist )
|
|
|
|
-- List:Dock( FILL )
|
|
|
|
-- List:SetSpaceX( 5 )
|
|
|
|
-- List:SetSpaceY( 5 )
|
2023-09-25 17:26:52 -04:00
|
|
|
|
|
|
|
|
2023-11-03 13:20:39 -04:00
|
|
|
local createlist = {}
|
|
|
|
|
2023-11-10 10:56:17 -05:00
|
|
|
for ClassName, Class in pairs( WEAPONS ) do
|
2023-11-03 13:20:39 -04:00
|
|
|
if !createlist[Class.Type] then
|
|
|
|
createlist[Class.Type] = {}
|
2023-09-25 17:26:52 -04:00
|
|
|
end
|
|
|
|
|
2023-11-03 13:20:39 -04:00
|
|
|
table.insert( createlist[Class.Type], { ClassName = ClassName, Class = Class } )
|
|
|
|
end
|
2023-09-25 17:26:52 -04:00
|
|
|
|
2023-11-10 10:56:17 -05:00
|
|
|
for i, v in SortedPairs( createlist ) do
|
2023-11-03 13:20:39 -04:00
|
|
|
local Collapse = itemlist:Add( "DCollapsibleCategory" )
|
|
|
|
Collapse:Dock( TOP )
|
|
|
|
Collapse:SetLabel( i )
|
|
|
|
local Lays = itemlist:Add( "DIconLayout" )
|
|
|
|
Collapse:SetContents( Lays )
|
2023-11-28 22:52:37 -05:00
|
|
|
Collapse:SetExpanded( i!="magazine" )
|
2023-11-03 13:20:39 -04:00
|
|
|
Lays:Dock( FILL )
|
2023-11-10 10:56:17 -05:00
|
|
|
Lays:SetSpaceX( ss(1) )
|
|
|
|
Lays:SetSpaceY( ss(1) )
|
2023-11-03 13:20:39 -04:00
|
|
|
for Mew, New in ipairs( v ) do
|
|
|
|
local button = Lays:Add( "DButton" )
|
2023-11-18 00:29:04 -05:00
|
|
|
button:SetSize( ss(95), ss(14) )
|
2023-11-03 13:20:39 -04:00
|
|
|
--button:Dock( TOP )
|
|
|
|
button:DockMargin( 0, 0, 0, ss(4) )
|
|
|
|
|
|
|
|
button.Text_Name = New.Class.Name
|
|
|
|
button.Text_Desc = New.Class.Description
|
|
|
|
|
|
|
|
-- PROTO: These functions don't need to be remade over and over like this.
|
|
|
|
function button:DoClick()
|
2023-11-16 02:11:42 -05:00
|
|
|
RunConsoleCommand( "benny_debug_give", New.ClassName )
|
2023-11-03 13:20:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
function button:DoRightClick()
|
2023-11-16 22:00:11 -05:00
|
|
|
RunConsoleCommand( "benny_debug_give", "mag_" .. New.ClassName )
|
2023-11-03 13:20:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
function button:Paint( w, h )
|
2023-11-12 04:55:08 -05:00
|
|
|
surface.SetDrawColor( schemes[active]["fg"] )
|
2023-11-03 13:20:39 -04:00
|
|
|
surface.DrawRect( 0, 0, w, h )
|
|
|
|
|
2023-11-12 04:55:08 -05:00
|
|
|
surface.SetTextColor( schemes[active]["bg"] )
|
2023-11-03 13:20:39 -04:00
|
|
|
|
2023-11-10 10:56:17 -05:00
|
|
|
surface.SetFont( "Benny_12" )
|
|
|
|
surface.SetTextPos( ss(2), ss(2) )
|
2023-11-03 13:20:39 -04:00
|
|
|
surface.DrawText( self.Text_Name )
|
|
|
|
|
|
|
|
-- surface.SetFont( "Benny_10" )
|
|
|
|
-- surface.SetTextPos( ss(4), ss(4 + 12) )
|
|
|
|
-- surface.DrawText( self.Text_Desc )
|
|
|
|
return true
|
|
|
|
end
|
2023-09-25 17:26:52 -04:00
|
|
|
end
|
|
|
|
end
|
2023-11-03 13:20:39 -04:00
|
|
|
|
2023-09-25 17:26:52 -04:00
|
|
|
end
|
2023-09-24 17:50:42 -04:00
|
|
|
local function regen_items( itemlist )
|
|
|
|
local ply = LocalPlayer()
|
2023-11-17 22:56:41 -05:00
|
|
|
local inv = ply:INV_Get()
|
2023-11-12 04:55:08 -05:00
|
|
|
local active = GetConVar("benny_hud_tempactive"):GetString()
|
2023-09-24 17:50:42 -04:00
|
|
|
itemlist:Clear()
|
2023-11-18 03:40:42 -05:00
|
|
|
|
|
|
|
local maidlist = {}
|
|
|
|
local catesmade = {}
|
2023-09-24 17:50:42 -04:00
|
|
|
|
2023-11-17 22:56:41 -05:00
|
|
|
for i, v in pairs( ply:INV_ListFromBuckets() ) do
|
2023-11-18 03:40:42 -05:00
|
|
|
local class = inv[v].Class
|
|
|
|
local Class = WEAPONS[class]
|
|
|
|
|
|
|
|
if !catesmade[Class.Type] then
|
|
|
|
catesmade[Class.Type] = true
|
|
|
|
local cate = vgui.Create( "DButton" )
|
|
|
|
itemlist:AddItem( cate )
|
|
|
|
cate:SetSize( 1, ss(12) )
|
|
|
|
cate:Dock( TOP )
|
|
|
|
cate:DockMargin( 0, 0, 0, ss(2) )
|
|
|
|
|
|
|
|
cate.Text_Name = Class.Type
|
|
|
|
|
|
|
|
function cate:Paint( w, h )
|
|
|
|
surface.SetDrawColor( schemes[active]["bg"] )
|
|
|
|
surface.DrawRect( 0, 0, w, h )
|
|
|
|
surface.SetDrawColor( schemes[active]["fg"] )
|
|
|
|
surface.DrawOutlinedRect( 0, 0, w, h, ss(0.5) )
|
|
|
|
|
|
|
|
surface.SetTextColor( schemes[active]["fg"] )
|
|
|
|
surface.SetFont( "Benny_10" )
|
|
|
|
surface.SetTextPos( ss(2), ss(2) )
|
|
|
|
surface.DrawText( self.Text_Name )
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-09-24 17:50:42 -04:00
|
|
|
local button = vgui.Create( "DButton" )
|
|
|
|
itemlist:AddItem( button )
|
2023-11-18 03:40:42 -05:00
|
|
|
button:SetSize( 1, ss(24) )
|
2023-09-24 17:50:42 -04:00
|
|
|
button:Dock( TOP )
|
2023-11-18 03:40:42 -05:00
|
|
|
button:DockMargin( 0, 0, 0, ss(2) )
|
2023-09-24 17:50:42 -04:00
|
|
|
|
2023-11-17 22:56:41 -05:00
|
|
|
button.ID = v
|
2023-11-18 03:40:42 -05:00
|
|
|
|
|
|
|
local mag = false
|
|
|
|
if class:Left( 4 ) == "mag_" then
|
|
|
|
mag = true
|
|
|
|
button:SetTall( ss(11) )
|
|
|
|
end
|
|
|
|
|
|
|
|
if !maidlist[class] then
|
|
|
|
maidlist[class] = table.Flip( ply:INV_Find( class ) )
|
|
|
|
end
|
|
|
|
local ml = maidlist[class]
|
|
|
|
|
2023-09-24 17:50:42 -04:00
|
|
|
button.Text_Name = Class.Name
|
|
|
|
button.Text_Desc = Class.Description
|
2023-11-18 03:40:42 -05:00
|
|
|
button.Text_ID = "[" .. ml[v] .. "] " .. button.ID
|
2023-09-24 17:50:42 -04:00
|
|
|
|
2023-09-24 18:38:00 -04:00
|
|
|
-- PROTO: These functions don't need to be remade over and over like this.
|
|
|
|
function button:DoClick()
|
2023-11-17 22:56:41 -05:00
|
|
|
local Menu = DermaMenu()
|
|
|
|
|
|
|
|
local opt1 = Menu:AddOption( "Equip Right", function()
|
|
|
|
RunConsoleCommand( "benny_inv_equip", button.ID, "false" )
|
|
|
|
end)
|
|
|
|
opt1:SetIcon( "icon16/resultset_next.png" )
|
|
|
|
|
|
|
|
local opt3 = Menu:AddOption( "Swap Right", function()
|
|
|
|
RunConsoleCommand( "benny_inv_equip", button.ID, "false", "true" )
|
|
|
|
end)
|
|
|
|
opt3:SetIcon( "icon16/resultset_first.png" )
|
2023-11-29 02:45:36 -05:00
|
|
|
|
|
|
|
Menu:AddSpacer()
|
|
|
|
|
|
|
|
local opt2 = Menu:AddOption( "Equip Left", function()
|
|
|
|
RunConsoleCommand( "benny_inv_equip", button.ID, "true" )
|
|
|
|
end)
|
|
|
|
opt2:SetIcon( "icon16/resultset_previous.png" )
|
2023-11-17 22:56:41 -05:00
|
|
|
|
|
|
|
local opt4 = Menu:AddOption( "Swap Left", function()
|
|
|
|
RunConsoleCommand( "benny_inv_equip", button.ID, "true", "true" )
|
|
|
|
end)
|
|
|
|
opt4:SetIcon( "icon16/resultset_last.png" )
|
|
|
|
|
|
|
|
Menu:AddSpacer()
|
|
|
|
|
|
|
|
local opt5 = Menu:AddOption( "Holster", function()
|
|
|
|
RunConsoleCommand( "benny_inv_holster", button.ID )
|
|
|
|
end)
|
|
|
|
opt5:SetIcon( "icon16/control_pause_blue.png" )
|
|
|
|
|
|
|
|
local opt6 = Menu:AddOption( "Discard", function()
|
|
|
|
RunConsoleCommand("benny_inv_discard", button.ID)
|
|
|
|
self:Remove()
|
|
|
|
end)
|
|
|
|
opt6:SetIcon( "icon16/bin.png" )
|
|
|
|
|
|
|
|
Menu:Open()
|
2023-11-13 19:27:08 -05:00
|
|
|
-- timer.Simple( 0.1, function() if IsValid( itemlist ) then regen_items( itemlist ) end end )
|
2023-09-24 18:38:00 -04:00
|
|
|
end
|
|
|
|
|
2023-11-29 02:45:36 -05:00
|
|
|
button.DoRightClick = function( self )
|
|
|
|
RunConsoleCommand("benny_inv_discard", button.ID)
|
|
|
|
self:Remove()
|
|
|
|
end
|
2023-09-24 18:38:00 -04:00
|
|
|
|
2023-09-24 17:50:42 -04:00
|
|
|
function button:Paint( w, h )
|
2023-11-12 04:55:08 -05:00
|
|
|
surface.SetDrawColor( schemes[active]["fg"] )
|
2023-09-24 17:50:42 -04:00
|
|
|
surface.DrawRect( 0, 0, w, h )
|
|
|
|
|
2023-11-12 04:55:08 -05:00
|
|
|
surface.SetTextColor( schemes[active]["bg"] )
|
2023-09-24 17:50:42 -04:00
|
|
|
|
2023-11-18 03:40:42 -05:00
|
|
|
surface.SetFont( !mag and "Benny_16" or "Benny_10" )
|
|
|
|
surface.SetTextPos( ss(2), ss(2) )
|
2023-09-24 17:50:42 -04:00
|
|
|
surface.DrawText( self.Text_Name )
|
|
|
|
|
2023-11-18 03:40:42 -05:00
|
|
|
if !mag then
|
|
|
|
surface.SetFont( "Benny_12" )
|
|
|
|
surface.SetTextPos( ss(2), ss(2 + 11) )
|
|
|
|
surface.DrawText( self.Text_Desc )
|
|
|
|
end
|
2023-09-24 17:50:42 -04:00
|
|
|
|
2023-11-18 03:40:42 -05:00
|
|
|
surface.SetFont( "Benny_10" )
|
|
|
|
local tx = surface.GetTextSize( self.Text_ID )
|
|
|
|
surface.SetTextPos( w - ss(2) - tx, ss(2) )
|
|
|
|
surface.DrawText( self.Text_ID )
|
2023-09-24 17:50:42 -04:00
|
|
|
return true
|
|
|
|
end
|
2023-09-24 16:26:55 -04:00
|
|
|
end
|
|
|
|
end
|
2023-09-24 17:50:42 -04:00
|
|
|
concommand.Add("benny_debug_inv", function()
|
|
|
|
if IsValid( base ) then base:Remove() end
|
|
|
|
base = vgui.Create("DFrame")
|
2023-11-18 03:40:42 -05:00
|
|
|
base:SetSize( ss(400), ss(400) )
|
2023-09-24 17:50:42 -04:00
|
|
|
base:MakePopup()
|
2023-09-25 17:26:52 -04:00
|
|
|
base:SetKeyboardInputEnabled( false )
|
2023-09-24 17:50:42 -04:00
|
|
|
base:Center()
|
2023-11-18 03:40:42 -05:00
|
|
|
local active = GetConVar("benny_hud_tempactive"):GetString()
|
2023-09-24 17:50:42 -04:00
|
|
|
|
|
|
|
function base:Paint( w, h )
|
2023-11-18 03:40:42 -05:00
|
|
|
surface.SetDrawColor( schemes[active]["bg"] )
|
2023-09-24 17:50:42 -04:00
|
|
|
surface.DrawRect( 0, 0, w, h )
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
local itemlist = base:Add("DScrollPanel")
|
|
|
|
itemlist:Dock( FILL )
|
|
|
|
|
|
|
|
regen_items( itemlist )
|
|
|
|
end)
|
2023-09-13 22:15:43 -04:00
|
|
|
end
|