View Single Post
01-30-23, 09:12 AM   #1
Benalish
A Flamescale Wyrmkin
 
Benalish's Avatar
Join Date: Dec 2012
Posts: 123
Getting GameTooltip:GetItem()

There's a way to get GameTooltip:GetItem() when GameTooltip is hidden? I know the GameTooltip tries to show when mouse hovers a game object, so I tried this script, but it doesn't seem to work

Lua Code:
  1. GameTooltip:HookScript('OnShow', function(self)
  2.     print(self:GetItem())
  3. end)
  Reply With Quote