mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
Remove adventurer's stone check, it's not required to request ldon raids Add unused mmcf expedition request dialogue Use dz for lfaydark ldon raid doors Convert lockouts to expedition system Add live area emote flavor
13 lines
No EOL
410 B
Lua
13 lines
No EOL
410 B
Lua
function event_loot(e)
|
|
if(e.item:GetID() == 69981) then
|
|
local qglobals = eq.get_qglobals(e.self);
|
|
if(qglobals["paladin_epic_mmcc"] == "1") then
|
|
if(qglobals["paladin_epic_mmcc_chest"] == nil) then
|
|
eq.spawn2(893,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading()); -- #a chest (Epic 2.5)
|
|
eq.set_global("paladin_epic_mmcc_chest","1",5,"F");
|
|
end
|
|
else
|
|
return 1;
|
|
end
|
|
end
|
|
end |