Quests
To get started, add the following to load.lua
local Quest = require "engine.Quest"
Add the following to the keybinds in Game.lua
SHOW_QUESTS = function()
self:registerDialog(require("engine.dialogs.ShowQuests").new(self.player))
end,
You also need to add the following to Actor.lua, both at the top and in the requires.
require "engine.interface.ActorQuest"