Zehlendorf Posted March 24, 2017 Share Posted March 24, 2017 Hello, someone have the ItemID addon working in wow 3.3.5a, that can send to me? Thanks. Link to comment Share on other sites More sharing options...
-SeMGa Posted March 24, 2017 Share Posted March 24, 2017 Try idTip. Link to comment Share on other sites More sharing options...
Zehlendorf Posted March 24, 2017 Author Share Posted March 24, 2017 Hello, idTip for wow 3.3.5a just show spell Ids, I want something that show Item IDs- Link to comment Share on other sites More sharing options...
Sheldon Posted March 24, 2017 Share Posted March 24, 2017 GameTooltip:HookScript("OnTooltipSetSpell", function (self) local SpellName, SpellRank, SpellID = self:GetSpell() self:AddLine("|cffff8000ID:|cffFFFFFF " .. SpellID) end) GameTooltip:HookScript("OnTooltipSetItem", function (self) local name, link = GameTooltip:GetItem() local _, _, itemID = link:find("|Hitem:(%d+):.*|h%[(.-)%]|h|r") self:AddLine("|cffff8000ID:|cffFFFFFF " .. itemID) end) Link to comment Share on other sites More sharing options...
Zehlendorf Posted March 24, 2017 Author Share Posted March 24, 2017 Thanks for reply sheldon, I found an addon that works with Lua, but i will try this too! ty Link to comment Share on other sites More sharing options...
Zehlendorf Posted March 25, 2017 Author Share Posted March 25, 2017 Sheldon Im trying to add NpcID but this isnt working, help GameTooltip:HookScript("OnTooltipSetUnit", function(self) local name, unit = self:GetUnit() local unitType, _, _, _, _, npcID = strsplit(':', UnitGUID(unit) or '') self:AddLine(unitType, npcID) self:Show() end) Link to comment Share on other sites More sharing options...
Barbz Posted April 16, 2017 Share Posted April 16, 2017 Did you make it work Zehlendorf ? By modifying the IdTip addon ? It would be awesome to be able to see the factionID, the NPC ID and all sorts of IDs in one click or by hovering the mouse. I know that the newer versions of idTip have NPC IDs included but it's for MOP or WOD. I think everybody has to deal with IDs at some point in game. Link to comment Share on other sites More sharing options...
ItemID addon.
By Zehlendorfin General
Recommended Posts