mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
13 lines
225 B
Lua
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
|