/run for b = 0, 4 do for s = 1, GetContainerNumSlots(b) do local l = GetContainerItemLink(b, s) if l and l:find("Shiny Red Apple") then PickupContainerItem(b, s) DeleteCursorItem() end end end-
Credits go to Wulf, he posted it in the "Arguably best way to level a guild" Thread
Just replace "Shiny Red Apple" with the addon to be deleted
Autoclicker![]()
Autohotkey doesn't work on minimized windows since it's using mouse coords?@ qwee you could try autohotkey, it should work
@ Ahlander are you sure you did not delete the quotation marks?
@ Ahlander are you sure you did not delete the quotation marks?
if you have anything with a "Type Delete to Confirm" I doubt there's a lot of options available to solve that..
What is it you're trying to do anyway to avoid your inventory being full?
/run local i,n=0;for b=0,4 do for s=1,GetContainerNumSlots(b) do ClearCursor();i={GetContainerItemInfo(b,s)};n=i[7];if n and string.find(n,"9d9d9d") then PickupContainerItem(b,s); DeleteCursorItem() end end end
Could do a macro,
Code:/run local i,n=0;for b=0,4 do for s=1,GetContainerNumSlots(b) do ClearCursor();i={GetContainerItemInfo(b,s)};n=i[7];if n and string.find(n,"9d9d9d") then PickupContainerItem(b,s); DeleteCursorItem() end end end
Then have it call the macro
This'll delete anything grey in your inventory no pop ups.