a_pile_of_mold.lua - Quest File
xxxxxxxxxx
1
function event_combat(e)
2
e.self:Emote("erupts in a cloud of spores!");
3
4
local spawns = math.random(1,5);
5
for n = 1, spawns do
6
mob = eq.spawn2(11164,0,0,e.self:GetX() + math.random (-5,5), e.self:GetY() + math.random(-5,5), e.self:GetZ(), e.self:GetHeading()); -- a_sporeling (11164)
7
8
eq.depop_with_timer();
9
end
10
end
11
Quest Source: 28 May 2022