mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
11 lines
378 B
Lua
11 lines
378 B
Lua
function event_spawn(e)
|
|
local xloc = e.self:GetX();
|
|
local yloc = e.self:GetY();
|
|
local zloc = e.self:GetZ();
|
|
eq.set_proximity(xloc - 25, xloc + 25, yloc - 25, yloc + 25, zloc - 3, zloc + 6);
|
|
end
|
|
|
|
function event_enter(e)
|
|
e.self:Emote("not quite sure what a moldmaster is, but you are sure that you don't want to meet it alone, and in the dark.");
|
|
eq.depop_with_timer();
|
|
end
|