mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-22 04:37:47 +00:00
20 lines
314 B
Lua
20 lines
314 B
Lua
![]() |
|
||
|
|
||
|
function onZoneInit(zone)
|
||
|
end
|
||
|
|
||
|
function onZoneIn(player)
|
||
|
|
||
|
openingQuest = player:getQuest(110009);
|
||
|
|
||
|
--Opening Quest
|
||
|
if (openingQuest ~= nil) then
|
||
|
if (openingQuest:GetQuestFlag(0) == false) then
|
||
|
player:kickEvent(player:getDirector(), "noticeEvent");
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
function onZoneOut(zone, player)
|
||
|
end
|