Thread Tools Display Modes
01-12-19, 09:03 AM   #1
strickland
A Cyclonian
Join Date: Apr 2007
Posts: 40
Spellid on tooltip

Hey, I remember that I used an addon that enables spellid on the tooltip, be that on everything included spells, buff, debuff on me, also items, and every tooltip.

But I can't for the life of me remember which addon that was, I remember it was a big addon and there was a tick inside of it that says "Show spellid", please help me find it.
  Reply With Quote
01-12-19, 09:33 AM   #2
Sylen
A Wyrmkin Dreamwalker
AddOn Author - Click to view addons
Join Date: Jan 2011
Posts: 50
idTip does this stuff.
  Reply With Quote
01-12-19, 11:28 AM   #3
myrroddin
A Pyroguard Emberseer
 
myrroddin's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 1,237
I think every tooltip addon can do this, either by default or in their options.
  Reply With Quote
01-12-19, 12:14 PM   #4
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
If you don't want an entire addon just for a spell id, paste the following at https://addon.bool.no

Lua Code:
  1. local function spellid(self,unit,index,filter)
  2.     local _,id
  3.     if unit then
  4.         _,_,_,_,_,_,_,_,_,id=UnitAura(unit,index,filter)
  5.     else
  6.         _,id=self:GetSpell()
  7.     end
  8.     if id then self:AddLine("ID: "..id) end
  9.     self:Show()
  10. end
  11. hooksecurefunc(GameTooltip,"SetUnitAura",spellid)
  12. hooksecurefunc(GameTooltip,"SetUnitBuff",spellid)
  13. hooksecurefunc(GameTooltip,"SetUnitDebuff",spellid)
  14. GameTooltip:HookScript("OnTooltipSetSpell",spellid)


If you want the line a certain color, change the AddLine part to this:

if id then self:AddLine("|cff789ABCID: "..id.."|r") end

Replace 789ABC with an appropriate hex value.
  Reply With Quote
01-13-19, 12:31 AM   #5
loudsoul
A Defias Bandit
AddOn Author - Click to view addons
Join Date: Jun 2017
Posts: 3
https://www.wowinterface.com/downloa...-BFA.html#info
  Reply With Quote
01-13-19, 04:42 AM   #6
strickland
A Cyclonian
Join Date: Apr 2007
Posts: 40
Thank you all very much, so helpful all of the above <3
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Spellid on tooltip

Thread Tools
Display Modes

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