aboutsummaryrefslogtreecommitdiff
path: root/gamemode/shared/questsystem/examplequest.lua
blob: 6473044622d5301b1b51e665752b92a567d9675b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
do return end
if SERVER then return end
local quest = {}

quest.Name = "Example Quest"

--[[
    Given a DPanel, draw some text that the player can use when going through quests.
]]
function quest.DrawQuestInfo(panel, status)

end

ART.RegisterQuest(quest)