mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
16 lines
800 B
Lua
16 lines
800 B
Lua
--This is an add spawned during the Shei Vinitras fight. If anyone is killed by this mob, a random mob (of 4 possible) will spawn.
|
|
|
|
function event_slay(e)
|
|
local a = eq.ChooseRandom(179161,179147,179160,179142);
|
|
-- local x = e.self:GetX();
|
|
-- local y = e.self:GetY();
|
|
-- local z = e.self:GetZ();
|
|
-- local h = e.self:GetHeading();
|
|
eq.spawn2(a,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
|
end
|
|
|
|
--Submitted by Jim Mills
|
|
-------------------------------------------------------------------------------------------------
|
|
-- Converted to .lua using MATLAB converter written by Stryd
|
|
-- Find/replace data for .pl --> .lua conversions provided by Speedz, Stryd, Sorvani and Robregen
|
|
-------------------------------------------------------------------------------------------------
|