mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
15 lines
396 B
Lua
15 lines
396 B
Lua
--Spawns an iksar broodling on the death of the golems 75% of the time.
|
|
|
|
function event_signal(e)
|
|
if(e.signal == 1) then
|
|
e.self:Say("Such is the will of Cazic-Thule!");
|
|
end
|
|
end
|
|
|
|
function event_death_complete(e)
|
|
if(eq.is_the_ruins_of_kunark_enabled()) then
|
|
if(math.random(100) > 24) then
|
|
eq.spawn2(72105,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
|
end
|
|
end
|
|
end
|