aboutsummaryrefslogtreecommitdiff
path: root/gamemode/shared/questsystem/examplequest.lua
blob: 8605ab87f0b0a78fc52c59a0791d124fc986b7dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)