diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2017-10-09 16:20:46 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2017-10-09 16:20:46 -0400 |
| commit | da81a0a23a3704dd2de3ab2249496c1ad1912d1c (patch) | |
| tree | 915edc671acbb292191adad2f25f87ba26e567cf /gamemode/client/qpanels/quests.lua | |
| parent | 497be6ff15989c7bf9de5beb138d2ef042dca6bd (diff) | |
| download | artery-da81a0a23a3704dd2de3ab2249496c1ad1912d1c.tar.gz artery-da81a0a23a3704dd2de3ab2249496c1ad1912d1c.tar.bz2 artery-da81a0a23a3704dd2de3ab2249496c1ad1912d1c.zip | |
Updated internal representation of inventories
Diffstat (limited to 'gamemode/client/qpanels/quests.lua')
| -rw-r--r-- | gamemode/client/qpanels/quests.lua | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/gamemode/client/qpanels/quests.lua b/gamemode/client/qpanels/quests.lua deleted file mode 100644 index eda9e31..0000000 --- a/gamemode/client/qpanels/quests.lua +++ /dev/null @@ -1,31 +0,0 @@ --- do return end --- --- ART.RegisterInventorySheet(function() --- --- local width = ScrW() --- local height = ScrH() --- --- local questsheet = vgui.Create( "DPanel") --- questsheet.Paint = function(self,w,h) end --- --- --Display quests --- local questselector = vgui.Create( "DScrollPanel", questsheet ) --- questselector:SetSize((width / 4) - 20, (height / 2) - 40) --- questselector:SetPos(0,0) --- local questinfo = vgui.Create("DScrollPanel", questsheet) --- questinfo:SetSize(width / 4, height / 2) --- questinfo:SetPos(0,height / 2) --- for k,v in pairs(LocalPlayer().Quests or {}) do --- print("Displaying quest:" .. k) --- local questbutton = vgui.Create( "DButton" , questselector ) --- questbutton:Dock(TOP) --- questbutton:SetText(k) --- questbutton.DoClick = function() --- print("At point of clicking, art is:") --- PrintTable(ART) --- ART.GetQuest(k).DrawQuestInfo(questinfo,v) --- end --- end --- --- return "Quests", questsheet, "icon16/house.png" --- end) |
