mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
Uqua is now a DZ based instance All fights tested over 18 months and as close to live like as we have parsed. There is anti exploit protection around a number of the fights to prevent fight skipping and bypassing of doors.
15 lines
849 B
Lua
15 lines
849 B
Lua
function event_spawn(e)
|
|
e.self:Emote("strides forward to deal with its enemies.");
|
|
end
|
|
|
|
function event_death_complete(e)
|
|
local instance_id = eq.get_zone_instance_id();
|
|
eq.set_global(instance_id.."_uquaragedoor","1",3,"H6");
|
|
end
|
|
|
|
function event_slay(e)
|
|
if e.other:IsClient() or e.other:IsPet() then -- not sure why this is necessary, but otherwise will occasionally spawn adds when an event mob dies
|
|
local x,y,z,h = e.other:GetX(), e.other:GetY(), e.other:GetZ(), e.other:GetHeading();
|
|
eq.spawn2(eq.ChooseRandom(292043,292044,292045,292046,292047,292048,292049,292050),0,0,x,y,z,h); -- NPC(s): #a_coercing_spirit (292043), #a_malevolent_spirit (292044), #a_slighted_spirit (292045), #a_spiteful_spirit (292046), #a_vengeful_spirit (292047), #a_vindictive_spirit (292048), #an_avenging_spirit (292049), #an_infuriated_spirit (292050)
|
|
end
|
|
end
|