mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
9 lines
485 B
Lua
9 lines
485 B
Lua
function event_death_complete(e)
|
|
local which = math.random(2);
|
|
if (which == 1) then
|
|
eq.spawn2(119122, 0, 0, e.self:GetX(), e.self:GetY(), e.self:GetZ(), e.self:GetHeading()); -- NPC: a_tar_goo
|
|
elseif (which == 2) then
|
|
eq.spawn2(119122, 0, 0, e.self:GetX(), e.self:GetY(), e.self:GetZ(), e.self:GetHeading()); -- NPC: a_tar_goo
|
|
eq.spawn2(119122, 0, 0, e.self:GetX(), e.self:GetY(), e.self:GetZ(), e.self:GetHeading()); -- NPC: a_tar_goo
|
|
end
|
|
end
|