mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
33 lines
1.0 KiB
Lua
33 lines
1.0 KiB
Lua
require ("global")
|
|
require ("quests/man/man0l0")
|
|
|
|
function onSpawn(player, npc)
|
|
man0l0Quest = player:GetQuest("man0l0");
|
|
|
|
if (man0l0Quest ~= nil) then
|
|
if (man0l0Quest:GetQuestFlag(MAN0L0_FLAG_MINITUT_DONE2) == false) then
|
|
npc:SetQuestGraphic(player, 0x2);
|
|
else
|
|
npc:SetQuestGraphic(player, 0x0);
|
|
end
|
|
end
|
|
end
|
|
|
|
function onEventStarted(player, npc, triggerName)
|
|
man0l0Quest = player:GetQuest("man0l0");
|
|
|
|
if (man0l0Quest ~= nil) then
|
|
if (triggerName == "talkDefault") then
|
|
if (man0l0Quest:GetQuestFlag(MAN0L0_FLAG_MINITUT_DONE2) == false) then
|
|
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processTtrMini002", nil, nil, nil);
|
|
npc:SetQuestGraphic(player, 0x0);
|
|
man0l0Quest:SetQuestFlag(MAN0L0_FLAG_MINITUT_DONE2, true);
|
|
man0l0Quest:SaveData();
|
|
player:GetDirector("OpeningDirector"):onTalkEvent(player, npc);
|
|
else
|
|
callClientFunction(player, "delegateEvent", player, man0l0Quest, "processEvent000_13", nil, nil, nil);
|
|
end
|
|
end
|
|
end
|
|
player:EndEvent();
|
|
end |