Help hiding the "Unspent Profession Knowledge" popup (Solved)

Copy and paste this into https://addon.bool.no/ to create a small addon to suppress those popup alerts (and the pulsing bit).

-- stops microbutton pop alerts
hooksecurefunc("MicroButtonPulse",function(self,duration)
    MicroButtonPulseStop(self)
end)
hooksecurefunc("MainMenuMicroButton_ShowAlert",function(self)
    HelpTip:HideAllSystem("MicroButtons")
end)
6 Likes