mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
17 lines
349 B
Lua
17 lines
349 B
Lua
function event_spawn(e)
|
|
eq.set_timer("depop",1200000);
|
|
e.self:SetRunning(true);
|
|
end
|
|
|
|
function event_timer(e)
|
|
if(e.timer == "depop") then
|
|
eq.depop();
|
|
end
|
|
end
|
|
function event_combat(e)
|
|
if(e.joined == true) then
|
|
e.self:Say("The time fer talk is over. Raise yer guard!!");
|
|
eq.signal(12082,1);
|
|
eq.signal(12154,1); -- NPC: Frostbite
|
|
end
|
|
end
|