View Single Post
01-30-23, 03:43 PM   #2
Benalish
A Flamescale Wyrmkin
 
Benalish's Avatar
Join Date: Dec 2012
Posts: 123
I made this script working when GameTooltip is hidden:

Lua Code:
  1. GameTooltip:HookScript('OnTooltipSetItem', function(self)
  2.     print(self:GetItem())
  3. end)

However this script stop to work when the GameTooltip is hidden due to a conflict with another addon.
Is there any way to protect my script from future conflicts like this?

Last edited by Benalish : 01-30-23 at 06:08 PM.
  Reply With Quote