2022-01-26 01:15:02 -05:00
|
|
|
require("global")
|
2022-01-24 23:49:10 -05:00
|
|
|
|
|
|
|
function onStart(player, quest)
|
|
|
|
quest:StartSequence(SEQ_000);
|
|
|
|
end
|
|
|
|
|
|
|
|
function onFinish(player, quest)
|
|
|
|
end
|
|
|
|
|
2022-02-16 15:32:54 -05:00
|
|
|
function onStateChange(player, quest, seqNum)
|
2022-01-24 23:49:10 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
function onTalk(player, quest, npc)
|
|
|
|
local sequence = quest:getSequence();
|
|
|
|
local classId = npc:GetActorClassId();
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function onEmote(player, quest, npc, emote)
|
|
|
|
end
|
|
|
|
|
|
|
|
function onPush(player, quest, npc)
|
|
|
|
end
|
|
|
|
|
|
|
|
function onNotice(player, quest, npc)
|
|
|
|
end
|
|
|
|
|
|
|
|
function getJournalInformation(player, quest)
|
|
|
|
return {};
|
|
|
|
end
|
|
|
|
|
|
|
|
function getJournalMapMarkerList(player, quest)
|
|
|
|
return 11000105, 11000106;
|
|
|
|
end
|