mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
24 lines
731 B
Lua
24 lines
731 B
Lua
-- Epic NPC -- Keeper_of_Souls
|
|
|
|
function event_spawn(e)
|
|
eq.set_timer("summit",1800000);
|
|
end
|
|
|
|
function event_timer(e)
|
|
if(e.timer == "summit") then
|
|
eq.stop_timer("summit");
|
|
eq.depop();
|
|
end
|
|
end
|
|
|
|
function event_death_complete(e)
|
|
sirran= nil;
|
|
eq.set_global("sirran","4",3,"M20");
|
|
eq.spawn2(71058,0,0,-543,767,174,128); -- NPC: Sirran_the_Lunatic
|
|
end
|
|
|
|
--Quest by: Solid11
|
|
-------------------------------------------------------------------------------------------------
|
|
-- Converted to .lua using MATLAB converter written by Stryd
|
|
-- Find/replace data for .pl --> .lua conversions provided by Speedz, Stryd, Sorvani and Robregen
|
|
-------------------------------------------------------------------------------------------------
|