Add unused sro ldon expedition request (gukc) Use dz for sro ldon door in innothule Use expedition system for lockouts
11 lines
313 B
Lua
11 lines
313 B
Lua
local expeditions = { gukg = true, guke = true, gukc = true }
|
|
|
|
function event_click_door(e)
|
|
local door_id = e.door:GetDoorID();
|
|
if (door_id == 5) then
|
|
local dz = e.self:GetExpedition()
|
|
if dz.valid and expeditions[dz:GetZoneName()] then
|
|
e.self:MovePCDynamicZone(dz:GetZoneID())
|
|
end
|
|
end
|
|
end
|