mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
12 lines
226 B
Lua
12 lines
226 B
Lua
-- will despawn while in combat if timer is met
|
|
|
|
function event_spawn(e)
|
|
eq.set_timer("depop", 2700 * 1000); -- 45 min uptime
|
|
end
|
|
|
|
|
|
function event_timer(e)
|
|
if (e.timer == "depop") then
|
|
eq.depop_with_timer();
|
|
end
|
|
end
|