Disable character tooltips when mouseover

Hey

I am looking for a script or addons that disable when you mouseover on a units, on the bottom right there’s the tooltips that show up.

I tryed Tiptac but that thing don’t make me able to disable it.

i tryed this

Hide tooltips:
/script GameTooltip:SetScript(“OnShow”, GameTooltip.Hide);
Show tooltips:
/script GameTooltip:SetScript(“OnShow”, GameTooltip.Show);

But it also disable my item in the bag tooltips ( that not that i want, i just want the character tooltips disable).

I run out of solution.

The issue i got is because i got REflex addon at that location and i love that location, but when you are in fight, that tooltips keep showing itself everytime and that is very annoying, mostly because after the character tooltips is gone, it make me an empty space, so i want to disable it since i don’t need it.

I hope someone got a idea just to Ddisable character tooltips when mouseover.

Anyone ?

/run GameTooltip:HookScript("OnShow", function(self) if self:GetOwner() == UIParent then self:Hide() end end)

Make sure to run this while no tooltip is shown.

13 Likes

Thank a lot :smiley: !
That what i wanted :grinning_face_with_smiling_eyes: !

And in case i don’t recognize the race, the tooltips is still shown my mouseover the portait when targeted. Better than expected :smiley: !

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.