mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
Add unused ldon expedition requests for taka and take Use dz for nro ldon door (takc, take, taka) Use expedition system for lockouts
12 lines
314 B
Lua
12 lines
314 B
Lua
local expeditions = { takc = true, take = true, taka = 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
|