mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-21 12:17:46 +00:00
15 lines
No EOL
283 B
Lua
15 lines
No EOL
283 B
Lua
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 |