Download
(256Kb)
Download
Updated: 02-19-09 11:47 AM
Pictures
File Info
Updated:02-19-09 11:47 AM
Created:02-12-09 02:03 PM
Downloads:3,232
Favorites:35
MD5:

Endeavours DropTip

Version: 1.7
by: Endeavour [More]

by Nevermore/Endeavour/Yvaine [EU] Arthas

Did you ever inspect another player and wondered where that item drops?
This addon might be your solution!
If you hover over an item, the addon will add the following information to the item tooltip:

  1. Where does it drop?
  2. Who drops it?
  3. How many times can it be stacked?
  4. Item Level
  5. Item ID

Facts:

Almost every Wrath of the Lich King / Burning Crusade item is supported.
Everything can be turned off/on.
Only consumes about 397 Kilobytes of memory.

Type /edt REPLACEWITHSTUFFTOSEARCHFOR in order to do a full-text search.

If you have any comments, suggestions or feature requests feel free to drop a line here.

1.7:
- Fixed that stack ... nil error

1.6:
- Added stack size display, added full-text search functionality

1.5:
- Burning Crusade Items added. Quest items added (thanks to GitS). Redesigned the options menu, type /edt to open it. More options added.
Post A Reply Comment Options
Unread 02-12-09, 09:48 PM  
Jeania
An Aku'mai Servant
 
Jeania's Avatar

Forum posts: 39
File comments: 170
Uploads: 0
oh so drooling! I can't wait to try ^_^
__________________
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Words to Remember:

"You never really learn much from hearing yourself talk." ~ George Clooney

*۝*Jeania/Anjelie ~ Dalaran*۝*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Report comment to moderator  
Reply With Quote
Unread 02-13-09, 12:48 AM  
Argo007
A Cyclonian
AddOn Author - Click to view AddOns

Forum posts: 40
File comments: 20
Uploads: 1
Yehaaaa...this is the one....perfect !!!
__________________
Report comment to moderator  
Reply With Quote
Unread 02-14-09, 04:09 PM  
Anaral
A Murloc Raider
 
Anaral's Avatar
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 52
Uploads: 2
I tried using your addon, but it seems to not work well with other addons. It won't display the info if I have all my addons enabled. I can access the options just fine, but it doesn't show the info in the tooltip. I disabled all but E_Droptip, it worked. I started trying to enable and disable my addons, but couldn't find a 'smoking gun'.

If I can find a reason, I'll edit...

EDIT: I've found that it is a conflict with Gatherer, of all addons. I'll chat with the devs of the addon to see what it could be.
__________________
Last edited by Anaral : 02-14-09 at 05:16 PM.
Report comment to moderator  
Reply With Quote
Unread 02-14-09, 04:12 PM  
GOSYDELIX
A Flamescale Wyrmkin
 
GOSYDELIX's Avatar

Forum posts: 120
File comments: 58
Uploads: 0
Nice work man! Really awesome addon, know i don't need to check the stuff @ Atlasloot all the time!
__________________
Report comment to moderator  
Reply With Quote
Unread 02-14-09, 06:27 PM  
Tense
A Kobold Labourer

Forum posts: 0
File comments: 15
Uploads: 0
Nice work

I love addons that are so small and yet so incredibly useful. Can confirm it works just fine with RatingBuster, Tiptac, Enchant Woot o Matic and Drdamage.
Report comment to moderator  
Reply With Quote
Unread 02-15-09, 04:00 AM  
EnSabahNur
A Defias Bandit
 
EnSabahNur's Avatar
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 55
Uploads: 6
A few suggestions for your great Addon

Great Addon. Are you going to add data for the old WoW instances and PvP, too? I added about 700 crafted items if you want to add them just let me know and I can send you the code.

And what do you think about adding a note for normal and heroic drops?


I changed two things for personal use. If someone likes it he can copy the code from here.

Add type, subtype and stacksize:
In line 128 find this code:
Code:
local _, _, _, level = GetItemInfo(item)
and replace it with:
Code:
local _, _, _, level, _, itype, subtype, stack = GetItemInfo(item)

Show level and id in one line and add type, subtype and stack:
In line 141 and 142 find this code:
Code:
if dbd.showlevel == true then self:AddLine("|cffffffff"..L["Item Level"]..":|r "..level) end
if dbd.showid == true then    self:AddLine("|cffffffff"..L["Item ID"]..":|r "..item) end
and replace it with:
Code:
		if dbd.showlevel == true and dbd.showid == true then
			self:AddDoubleLine("|cffffffff"..L["Item Level"]..":|r "..level, "|cffffffff"..L["Item ID"]..":|r "..item)
		elseif dbd.showlevel == true then 
			self:AddLine("|cffffffff"..L["Item Level"]..":|r "..level)
		elseif dbd.showid == true then 
			self:AddLine("|cffffffff"..L["Item ID"]..":|r "..item)
		end
	
		local typetext = itype and subtype and string.format('Type: %s - %s', itype, subtype) or nil
		if stack ~= 1 then
			self:AddDoubleLine(typetext, "|cffffffff"..'Stack: '.."|r "..stack)
		else
			self:AddLine(typetext)
		end
Last edited by EnSabahNur : 02-15-09 at 04:01 AM.
Report comment to moderator  
Reply With Quote
Unread 02-15-09, 04:51 AM  
Endeavour
A Kobold Labourer
 
Endeavour's Avatar
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 22
Uploads: 7
Yes, i will add more data as soon as i have time to do so (final goal: complete item DB).
Version 1.6:
- Added stack size display
- Added a full-text search (type /edt replacewithstufftosearchfor , example: /edt honorable will display everything containing the word "honorable". /edt loatheb will show all drops from loatheb.)

EnSabahNur: Ich werd type und subtype nicht reinnehmen, weil es in den meisten Fällen bereits angezeigt wird (Beispiel: Auf meinen Schultern steht in der 1. Zeile Platte und Schulter), du darfst es aber gerne in deiner lokalen Kopie für dich selbst anpassen.
__________________
Ideals are lighthouses, not harbors.
Last edited by Endeavour : 02-15-09 at 07:34 AM.
Report comment to moderator  
Reply With Quote
Unread 02-15-09, 12:14 PM  
Jexx
A Deviate Faerie Dragon

Forum posts: 10
File comments: 118
Uploads: 0
This looks very nice, I've been waiting for something like this to come along!
Report comment to moderator  
Reply With Quote
Unread 02-15-09, 06:51 PM  
Kelem
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 118
Uploads: 2
Could look into tying your addon into something like Periodic table for the items, since it already contains most of the old and new items

itemDB would be an addon to look at for the code to tie into
Report comment to moderator  
Reply With Quote
Unread 02-16-09, 01:16 PM  
Endeavour
A Kobold Labourer
 
Endeavour's Avatar
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 22
Uploads: 7
No, ItemDB is not.
It has no Database by itself, it just catches Items from the cache and there is no information in the cache which boss drops it. So this is absolutey useless for E_DropTip. If there was any boss loot information inside of it, AtlasLoot would also use it.
ItemLevels, Stack amounts and Item IDs are not stroed in E_DropTip's database as they can be queried ingame, so only bosses and amounts of Badges are stored.
I just don't want to rely on 1000 libraries. Already had the case that a library wasn't supported any more so it screw up my whole addon.
However, most items are included (exept for WoW Classic and crafted stuff) and it only consumes about 400kb of memory.
So what's your complaint?

Originally posted by Kelem
Could look into tying your addon into something like Periodic table for the items, since it already contains most of the old and new items

itemDB would be an addon to look at for the code to tie into
__________________
Ideals are lighthouses, not harbors.
Last edited by Endeavour : 02-16-09 at 01:26 PM.
Report comment to moderator  
Reply With Quote
Unread 02-19-09, 04:39 PM  
Jexx
A Deviate Faerie Dragon

Forum posts: 10
File comments: 118
Uploads: 0
Not sure if its intended or not, but if you click a link in chat, the tooltip doesn't display the droptip info, but when you hover over items on the character frame it works fine.

Just thought i would throw it out there, not sure if thats a bug or working as intended.
Report comment to moderator  
Reply With Quote
Unread 02-19-09, 04:40 PM  
oddtoddy
A Murloc Raider

Forum posts: 6
File comments: 150
Uploads: 0
Whoa, very cool! I'm sure it took a lot of time to make this one. Thanks!
Report comment to moderator  
Reply With Quote
Unread 02-23-09, 05:19 PM  
RichDawg
A Defias Bandit

Forum posts: 3
File comments: 22
Uploads: 0
This addon does not display a single thing for me in the tooltip. I use TipTac if this helps and no I do not use any of the Gatherer mods.
Report comment to moderator  
Reply With Quote
Unread 02-23-09, 11:16 PM  
Endeavour
A Kobold Labourer
 
Endeavour's Avatar
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 22
Uploads: 7
Originally posted by RichDawg
This addon does not display a single thing for me in the tooltip. I use TipTac if this helps and no I do not use any of the Gatherer mods.
Disable all addons exept DropTip. Then, enable a addon, reload UI. still working? then enable another addon, reload UI. repeat until it breaks and you (and we if you post your results) know which addon causes it.
__________________
Ideals are lighthouses, not harbors.
Report comment to moderator  
Reply With Quote
Unread 02-26-09, 06:17 PM  
xtoq
An Aku'mai Servant
 
xtoq's Avatar
AddOn Author - Click to view AddOns

Forum posts: 32
File comments: 642
Uploads: 4
Originally posted by Endeavour
Disable all addons exept DropTip. Then, enable a addon, reload UI. still working? then enable another addon, reload UI. repeat until it breaks and you (and we if you post your results) know which addon causes it.
I had this same problem. Tracked it down to UberQuest Reborn. I'd rather have UberQuest than DropTip, so DT is disabled for now.

Suggestion: put whether a drop is from Heroic or Regular? I know I can look at the iLevel, but I don't like having that info in the tooltip.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: