blob: ee90f57e0fecbad552482a735c24d21b0dedeeca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--Maybe this will get used some day.
do return end
local i = nrequire("cl_inventory.lua")
i.ShowInventory()
local otab = otab or nil
local function addcraftingtab()
if otab then otab:Remove() end
local cpnl = vgui.Create("DPanel")
otab = i.tabsheet:AddSheet("Crafting",cpnl,"icon16/user.png", false, false, "Craft things!")
end
addcraftingtab()
|