eqmac-quests/fearplane/Dread.lua
2024-05-24 16:13:22 -07:00

15 lines
No EOL
395 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