mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
11 lines
310 B
Lua
11 lines
310 B
Lua
local expeditions = { mirb = true, mirc = true, mirg = true }
|
|
|
|
function event_click_door(e)
|
|
local door_id = e.door:GetDoorID()
|
|
if door_id == 3 then
|
|
local dz = e.self:GetExpedition()
|
|
if dz.valid and expeditions[dz:GetZoneName()] then
|
|
e.self:MovePCDynamicZone(dz:GetZoneID())
|
|
end
|
|
end
|
|
end
|