eqmac-quests/letalis/The_landscape.lua
2023-07-24 13:24:37 -07:00

11 lines
337 B
Lua

function event_spawn(e)
local ex = e.self:GetX();
local ey = e.self:GetY();
local ez = e.self:GetZ();
eq.set_proximity(ex - 30, ex + 30, ey - 30, ey + 30, ez - 30, ez + 30);
end
function event_enter(e)
e.self:Emote("is a contrast between bright light, and looming shadows cast by the lowering peaks.");
eq.depop_with_timer();
end