Originally Posted by
Khorium
They do indeed drop loot, albeit not all of them.
Destroy Scarabs and Idols using:
Code:
/run do for s=1,36 do local n=GetContainerItemLink(0,s) if n and (string.find(n," Idol") OR string.find(n," Scarab")then ChatFrame1:AddMessage("\124cffFF0000DESTROYED "..n) PickupContainerItem(0,s) DeleteCursorItem() end end end
You missed a closing bracket, fixed version:
Code:
/run for s=1,36 do local n=GetContainerItemLink(0,s);if n and (string.find(n," Idol") or string.find(n," Scarab")) then ChatFrame1:AddMessage("\124cffFF0000DESTROYED "..n);PickupContainerItem(0,s);DeleteCursorItem();end end