mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
16 lines
287 B
Lua
16 lines
287 B
Lua
function event_spawn(e)
|
|
eq.set_timer(1,1200000);
|
|
e.self:SetRunning(true);
|
|
end
|
|
|
|
function event_timer(e)
|
|
eq.depop();
|
|
end
|
|
|
|
function event_combat(e)
|
|
if e.joined then
|
|
e.self:Say("To the death!!");
|
|
eq.signal(12082,1); -- NPC: Frostbite
|
|
eq.signal(12154,1); -- NPC: Frostbite
|
|
end
|
|
end
|