projecteq-projecteqquests/txevu/arena.lua
2022-02-09 12:15:29 -06:00

10 lines
319 B
Lua

function event_spawn(e)
eq.set_timer("spawncondition", 60 * 60 * 1000); --in 1 hour turn on arena spawn condition
end
function event_timer(e)
eq.stop_timer("spawncondition");
eq.spawn_condition("txevu", 0, 6, 1);
--set arena trash spawn condition to on
eq.depop(297034); -- depop Champion if he is still up
end