eqmac-quests/codecay/Reanimated_Reaver.lua

16 lines
221 B
Lua
Raw Permalink Normal View History

2023-07-24 13:24:37 -07:00
function event_spawn(e)
eq.set_timer("depop", 1500000);
end
function event_timer(e)
eq.depop();
end
function event_combat(e)
if ( e.joined ) then
eq.pause_timer("depop");
else
eq.resume_timer("depop");
end
end