What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Addon to delete everything in bags?

qztr

Active Member
Joined
Mar 31, 2012
Messages
1,932
Reaction score
17
Need an addon asap, that deletes everything in the bags or a specific item.
Need it running on like 10-30 sec loops.
Or is it possible to do via macro?
 
Before people comment, no Loot Filter is not up to date so it doesnt work at the moment.
 
/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 item to be deleted
 
Last edited:
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

And this will be 100% automated exactly how?
 
Im running that in a macro and Ive replaced Shiny Red Apple, I just get an error when I run it. How exactly does it work if you dont mind?
 
@ qwee you could try autohotkey, it should work
@ Ahlander are you sure you did not delete the quotation marks?
 
@ qwee you could try autohotkey, it should work
@ Ahlander are you sure you did not delete the quotation marks?
Autohotkey doesn't work on minimized windows since it's using mouse coords?
 
@ Ahlander are you sure you did not delete the quotation marks?

Got it working, I found the original post, the problem is when you pasted it over, you added a - at the end. There is no - in the end of it.
 
@qwee Couldn't you just use a window and not minmize it? I got it working with 3 wow windows, non of them in the foreground
@Ahlander Glad it works :) I'm sorry for that :P
 
Now Ive got this nearly fully functional, I have to sit here and click 2 (My delete macro) every couple seconds to clear bags.
 
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?

It's the guild leveling exploit.
[Fishing Tournament!] is the item name, white letter.
 
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.
 
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.

[Fishing Tournament!] isn't grey though.
But the exploit is fixed so this thread can be locked.
 
Back
Top