Thread Tools Display Modes
09-26-15, 12:47 AM   #1
Lesteryoung
A Black Drake
Join Date: Aug 2015
Posts: 81
Autoloot money only - nothing else.

Does anyone know of an addon that simply automatically loots any gold/silver/copper from corpses.

I know you can turn auto loot on in the interface and there are plenty of auto loot addons, but none of them just auto loot currency and that's it which is all I want. Don't want to auto loot everything.
  Reply With Quote
09-26-15, 07:28 AM   #2
Maidgirl
A Murloc Raider
 
Maidgirl's Avatar
Join Date: Sep 2015
Posts: 5
I believe xloot has the filtering options you are looking for
  Reply With Quote
09-26-15, 07:36 PM   #3
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Did you actually read the post -- or even the title of the post -- before replying? The OP definitely does not want a full suite of every loot-related feature imaginable, that just happens to include the one feature they're looking for.

@Lesteryoung:
This should probably work:
Code:
local f = CreateFrame("Frame")
f:RegisterEvent("LOOT_OPENED")
f:SetScript("OnEvent", function(self, event, ...)
	for i = GetNumLootItems(), 1, -1 do
		local slotType = GetLootSlotType(i)
		local _, _, _, _, locked, isQuestItem = GetLootSlotInfo(i)
		if not locked and (isQuestItem or slotType == LOOT_SLOT_MONEY or slotType == LOOT_SLOT_CURRENCY) then
			LootSlot(i)
		end
	end
end)
It will also loot quest items, since that seems important, but if you really don't want to do that, just change the "and (isQuestItem or slotType" part to "and (slotType".

If you need help turning the above code into an addon, copy and paste it into this page:
http://addon.bool.no/
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote
09-26-15, 08:06 PM   #4
Maidgirl
A Murloc Raider
 
Maidgirl's Avatar
Join Date: Sep 2015
Posts: 5
Sorry I tried to help....I thought linking an addon that has the ability to do what the OP asked was a good thing...I guess there is no need to reply unless you know how to code things.

Xloot has loot only coins option. works very well.......
  Reply With Quote
09-26-15, 08:47 PM   #5
Lesteryoung
A Black Drake
Join Date: Aug 2015
Posts: 81
Thank you very much Phanx.

And I appreciate your help maidgirl, but like Phanx said, why would I get an addon with 15 features and only use 1 of them? That's like getting a pizza with a bunch of toppings and just eating the crust. It wouldn't make sense.
  Reply With Quote
09-27-15, 08:01 AM   #6
bsmorgan
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 219
Personally, I think the Xloot suggestion was a good one. It can be configured (on the fly) to just loot coins and it can be configured (on the fly) to any other combination the situation calls for.
  Reply With Quote
09-28-15, 02:08 PM   #7
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Originally Posted by bsmorgan View Post
Personally, I think the Xloot suggestion was a good one. It can be configured (on the fly) to just loot coins and it can be configured (on the fly) to any other combination the situation calls for.
Yeah but that's like dragging around one of these:

when all you really need and want is this:
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote
09-28-15, 02:42 PM   #8
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,877
Most guys would "want" option 1 reguardless of what they need
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.
  Reply With Quote
09-28-15, 06:24 PM   #9
Lesteryoung
A Black Drake
Join Date: Aug 2015
Posts: 81
Yeah, well, not this guy.

I'm a big fan of boiling things down to what I want and not an ounce more.

Simplicity is a great thing.
  Reply With Quote
09-28-15, 07:15 PM   #10
JDoubleU00
A Firelord
 
JDoubleU00's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 463
Originally Posted by Fizzlemizz View Post
Most guys would "want" option 1 reguardless of what they need
Not true, at least in my case.
__________________
Author of JWExpBar and JWRepBar.
  Reply With Quote
09-29-15, 11:56 PM   #11
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Originally Posted by Fizzlemizz View Post
Most guys would "want" option 1 reguardless of what they need
Hey, I have option 1 (though not such a nice container for it... still serves the purpose of letting me keep more of my money in my own pocket when my car needs an oil change or new brake pads or something) but I still use option 2 when that's what the situation calls for!
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote
09-30-15, 12:34 AM   #12
gmarco
An Onyxian Warder
 
gmarco's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 362
You can also check mine:
http://www.wowinterface.com/download...99-gmLoot.html

It can loot money and quest items (plus it can change from auto to manual the autoloot that for me is a very handy thing features

It require an LDB display for interacting with it and change the defaults but if you are comfortable with them (loot both money and quest items) you can also use without.

If you want something without LDB you can also check for Semi-Auto Looter" by SmileySL.
http://www.wowinterface.com/download...utoLooter.html

Which is cli only.
__________________
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
  Reply With Quote
09-30-15, 06:41 AM   #13
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Originally Posted by gmarco View Post
...you can also check for Semi-Auto Looter" by SmileySL.
http://www.wowinterface.com/download...utoLooter.html
I did.... and now I'd like some eye bleach, please. Globals. Globals everywhere. So many globals.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote
09-30-15, 12:12 PM   #14
gmarco
An Onyxian Warder
 
gmarco's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 362
Ehm ... I hope mine, gmloot, (which is heavily derived from it) is better if you have checked it :-)

Thanks.
__________________
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
  Reply With Quote
10-02-15, 05:20 AM   #15
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Originally Posted by gmarco View Post
Ehm ... I hope mine, gmloot, (which is heavily derived from it) is better if you have checked it :-)
Posted a comment on its page.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Autoloot money only - nothing else.


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off