mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
12 lines
508 B
Lua
12 lines
508 B
Lua
-- Converted to .lua by Speedz
|
|
|
|
function event_death_complete(e)
|
|
xloc = e.self:GetX();
|
|
yloc = e.self:GetY();
|
|
zloc = e.self:GetZ();
|
|
myheading = e.self:GetHeading();
|
|
eq.spawn2(35069,15,0,xloc + 5,yloc,zloc,myheading); -- NPC: a_terrorantuling
|
|
eq.spawn2(35069,15,0,xloc - 5,yloc,zloc,myheading); -- NPC: a_terrorantuling
|
|
eq.spawn2(35069,15,0,xloc,yloc + 5,zloc,myheading); -- NPC: a_terrorantuling
|
|
eq.spawn2(35069,15,0,xloc,yloc - 5,zloc,myheading); -- NPC: a_terrorantuling
|
|
end
|