projecteq-projecteqquests/codecay/a_swarming_fly.lua
2023-08-15 11:39:43 -04:00

17 lines
272 B
Lua

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