33 lines
683 B
Lua
33 lines
683 B
Lua
-----------------------------------
|
|
-- Zone: Navukgo_Execution_Chamber (64)
|
|
-----------------------------------
|
|
---@type TZone
|
|
local zoneObject = {}
|
|
|
|
zoneObject.onInitialize = function(zone)
|
|
end
|
|
|
|
zoneObject.onZoneIn = function(player, prevZone)
|
|
local cs = -1
|
|
|
|
if
|
|
player:getXPos() == 0 and
|
|
player:getYPos() == 0 and
|
|
player:getZPos() == 0
|
|
then
|
|
player:setPos(-660.185, -12.079, -199.532, 192)
|
|
end
|
|
|
|
return cs
|
|
end
|
|
|
|
zoneObject.onTriggerAreaEnter = function(player, triggerArea)
|
|
end
|
|
|
|
zoneObject.onEventUpdate = function(player, csid, option, npc)
|
|
end
|
|
|
|
zoneObject.onEventFinish = function(player, csid, option, npc)
|
|
end
|
|
|
|
return zoneObject
|