mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 21:33:46 +03:00
73 lines
2.0 KiB
Lua
73 lines
2.0 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/
|
|
--]]
|
|
|
|
|
|
--- Credit transfer tab for equipment menu
|
|
local GetTranslation = LANG.GetTranslation
|
|
function CreateTransferMenu(parent)
|
|
local dform = vgui.Create("DForm", parent)
|
|
dform:SetName(GetTranslation("xfer_menutitle"))
|
|
dform:StretchToParent(0,0,0,0)
|
|
dform:SetAutoSize(false)
|
|
|
|
if LocalPlayer():GetCredits() <= 0 then
|
|
dform:Help(GetTranslation("xfer_no_credits"))
|
|
return dform
|
|
end
|
|
|
|
local bw, bh = 100, 20
|
|
local dsubmit = vgui.Create("DButton", dform)
|
|
dsubmit:SetSize(bw, bh)
|
|
dsubmit:SetDisabled(true)
|
|
dsubmit:SetText(GetTranslation("xfer_send"))
|
|
|
|
local selected_sid64 = nil
|
|
|
|
local dpick = vgui.Create("DComboBox", dform)
|
|
dpick.OnSelect = function(s, idx, val, data)
|
|
if data then
|
|
selected_sid64 = data
|
|
dsubmit:SetDisabled(false)
|
|
end
|
|
end
|
|
|
|
dpick:SetWide(250)
|
|
|
|
-- fill combobox
|
|
local r = LocalPlayer():GetRole()
|
|
for _, p in player.Iterator() do
|
|
if IsValid(p) and p:IsActiveRole(r) and p != LocalPlayer() then
|
|
dpick:AddChoice(p:Nick(), p:SteamID64())
|
|
end
|
|
end
|
|
|
|
-- select first player by default
|
|
if dpick:GetOptionText(1) then dpick:ChooseOptionID(1) end
|
|
|
|
dsubmit.DoClick = function(s)
|
|
if selected_sid64 then
|
|
RunConsoleCommand("ttt_transfer_credits", selected_sid64, "1")
|
|
end
|
|
end
|
|
|
|
dsubmit.Think = function(s)
|
|
if LocalPlayer():GetCredits() < 1 then
|
|
s:SetDisabled(true)
|
|
end
|
|
end
|
|
|
|
dform:AddItem(dpick)
|
|
dform:AddItem(dsubmit)
|
|
|
|
dform:Help(LANG.GetParamTranslation("xfer_help", {role = LocalPlayer():GetRoleString()}))
|
|
|
|
return dform
|
|
end
|