mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
# Conflicts: # FFXIVClassic Map Server/FFXIVClassic Map Server.csproj # FFXIVClassic Map Server/Server.cs # data/scripts/player.lua # scripts/zones/193/npcs/pplStd_11@0C100.lua
20 lines
313 B
Lua
20 lines
313 B
Lua
|
|
|
|
function onZoneInit(zone)
|
|
end
|
|
|
|
function onZoneIn(player)
|
|
|
|
openingQuest = player:getQuest(110005);
|
|
|
|
--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 |