projecteq-projecteqquests/necropolis/a_swarming_beetle.lua
2023-08-15 11:39:43 -04:00

17 lines
272 B
Lua

function event_spawn(e)
eq.set_timer('Depop', 120 * 1000);
end
function event_combat(e)
if e.joined then
eq.stop_timer('Depop');
else
eq.set_timer('Depop', 120 * 1000);
end
end
function event_timer(e)
if (e.timer == 'Depop') then
eq.depop();
end
end