View Single Post
08-29-19, 06:43 PM   #2
kurapica.igas
A Chromatic Dragonspawn
Join Date: Aug 2011
Posts: 152
Try

Lua Code:
  1. GameTooltip:HookScript("OnTooltipSetSpell", function(self)
  2.     local name, id = self:GetSpell()
  3.     if id then
  4.         self:AddLine("    ")
  5.         self:AddLine("ID: " .. tostring(id), 1, 1, 1)
  6.     end
  7. end)
  Reply With Quote