Merge remote-tracking branch 'origin/ioncannon/quest_system' into Jorge/quest_system

This commit is contained in:
CuriousJorge 2022-02-08 21:41:22 -05:00
commit 4fe8f77887
19 changed files with 223 additions and 188 deletions

View file

@ -0,0 +1,15 @@
require("global")
function init()
return "/Director/AfterQuestWarpDirector";
end
function onEventStarted(player, director, eventType, eventName)
if (player:HasQuest(110002) == true) then
quest = player:GetQuest("Man0l1");
quest:OnNotice(player);
end
end
function main()
end