mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
11 lines
344 B
Lua
11 lines
344 B
Lua
function event_spawn(event)
|
|
local xloc = event.self:GetX();
|
|
local yloc = event.self:GetY();
|
|
local zloc = event.self:GetZ();
|
|
eq.set_proximity(xloc - 25, xloc + 25, yloc - 25, yloc + 25, zloc - 25, zloc + 25);
|
|
end
|
|
|
|
function event_enter(event)
|
|
event.self:Emote("chilling cry echoes through the darkened streets");
|
|
eq.depop_with_timer();
|
|
end
|