mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
12 lines
No EOL
317 B
Lua
12 lines
No EOL
317 B
Lua
-- Empty_egg_shells NPCID: 124117
|
|
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("crack beneath your feet.");
|
|
eq.depop_with_timer();
|
|
end |