Как сделать дополнительную кнопку в донат меню, открывающую Pointshop 2?
hook.Add('IGS.CatchActivities', 'PS', function(tabs)
local dummy = vgui.Create('DPanel')
dummy.Paint = function() end
local btn = tabs:AddTab('PointShop', dummy, 'icon16/money.png')
if not IsValid(btn) then return end
btn.DoClick = function(self)
Pointshop2:OpenMenu()
end
end)
1 лайк