mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
8 lines
205 B
Lua
8 lines
205 B
Lua
function event_combat(e)
|
|
if(e.joined) then
|
|
if(math.random(100) < 25) then
|
|
eq.spawn2(160230,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
|
end
|
|
eq.depop_with_timer();
|
|
end
|
|
end
|