View Single Post
01-22-21, 12:05 PM   #1
Smallinger
A Deviate Faerie Dragon
 
Smallinger's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2016
Posts: 18
GameToolTip addline on CovenantSanctumFrame CurrencyGroup

Hello, i try like day's to add a line on the CovenantSanctumFrame if the mousecursor over the anima currency.

but with a easy Solution like this dosen't work.

Lua Code:
  1. GameTooltip:HookScript("OnShow", function(self)
  2.     if _G["GameTooltipTextLeft" .. 1]:GetText() == "Reservoir Anima" then
  3.         GameTooltip:AddLine("TestLine");
  4.     end
  5. end)

I think the Covenant sanctum frame messes the tooltip up, anybody a idea to get the ToolTip edited ?.
  Reply With Quote