Script to fix Headless Horseman bug.

kibito's picture
in


You will need to create two macros, for "turn off tooltips" and "turn on tooltips". Turn off tooltip before you zone in, don't turn it back on until you loot the bag!

Turn Off Tooltips

/script GameTooltip.Temphide = function() GameTooltip:Hide() end;  GameTooltip:SetScript("OnShow", GameTooltip.Temphide);

Turn On Tooltips

/script GameTooltip:SetScript("OnShow", GameTooltip.Show);