mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
12 lines
343 B
Lua
12 lines
343 B
Lua
function event_click_door(e)
|
|
local door_id = e.door:GetDoorID();
|
|
local entity_list = eq.get_entity_list();
|
|
|
|
if (door_id == 52) then
|
|
entity_list:FindDoor(10):ForceOpen(e.self);
|
|
entity_list:FindDoor(7):ForceOpen(e.self);
|
|
elseif (door_id == 53) then
|
|
entity_list:FindDoor(5):ForceOpen(e.self);
|
|
end
|
|
end
|
|
|