View Single Post
01-31-23, 12:16 AM   #3
ludwici
A Murloc Raider
AddOn Author - Click to view addons
Join Date: Jan 2023
Posts: 4
Originally Posted by Benalish View Post
However this script stop to work when the GameTooltip is hidden due to a conflict with another addon.
What about using AceHook? It allows you to make a safe hook without conflicts
Or you can save you item to another variable

Lua Code:
  1. GameTooltip:HookScript('OnShow', function(self)
  2.     myItemVar = self:GetItem()
  3. end)

If I understand your idea correctly...
__________________
Dragonflight minimap on classic versions: DFMinimap (curse) or DFMinimap


Displays in which expansion the item was added: Itemansion (curse) or Itemansion
  Reply With Quote