Files
wnsrc/gamemodes/ixhl2rp/plugins/armbands/cl_hooks.lua
lifestorm ba1fc01b16 Upload
2024-08-04 23:12:27 +03:00

22 lines
579 B
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/
--]]
function PLUGIN:PopulateCharacterInfo(client, character, tooltip)
local armbandData = client:GetNetVar("armbands", {})
for armband, color in pairs(armbandData) do
local panel = tooltip:AddRow("armband")
panel:SetBackgroundColor(color)
panel:SetText("Nosi na ramieniu " .. armband)
panel:SizeToContents()
end
end