17 lines
272 B
Lua
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
|