eqmac-quests/potorment/An_unseen_entity.lua
2023-07-24 13:24:37 -07:00

13 lines
225 B
Lua

function event_spawn(e)
eq.set_timer("depop", 2000000);
end
function event_timer(e)
eq.depop();
end
function event_combat(e)
if ( e.joined ) then
e.self:CastSpell(1133, e.other:GetID()); -- Dimensional Return
end
end