mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
12 lines
257 B
Lua
12 lines
257 B
Lua
-- I believe at one point this would death touch anyone trying to pass them, inactive for now
|
|
|
|
function event_spawn(e)
|
|
eq.set_timer('depop', 1800 * 1000);
|
|
end
|
|
|
|
function event_timer(e)
|
|
if (e.timer == 'depop') then
|
|
eq.stop_timer('depop');
|
|
eq.depop();
|
|
end
|
|
end
|