0. Helm in Combat Addon 09/05/2009 01:28:51 PM PDT
Anyone know of an addon or macro that will automatically display my helm in combat, and automatically choose not to display it when not in combat? Some of the helms in this game are hideous, but I want them on in combat for the feel of it. Thanks!
1. Re: Helm in Combat Addon 09/05/2009 02:34:41 PM PDT
That would actually be a good idea for a normal feature in the game.
If you want to point out a problem with something in the game then do just that, point it out so that people are aware of it, don't whine about how Blizzard sucks for it.
2. Re: Helm in Combat Addon 09/05/2009 03:03:54 PM PDT
Q u o t e: Anyone know of an addon or macro that will automatically display my helm in combat, and automatically choose not to display it when not in combat? Some of the helms in this game are hideous, but I want them on in combat for the feel of it. Thanks!
/run local HiC = HiC or CreateFrame("Frame");HiC:SetScript("OnEvent",function() ShowHelm(not ShowingHelm()) end); HiC:RegisterEvent("PLAYER_REGEN_ENABLED"); HiC:RegisterEvent("PLAYER_REGEN_DISABLED")
Macro form, so you'll have to run it every time you log in.
And it just toggles the helm displayed / hidden, so make sure you have it hidden when not in combat to behind with.
The addon will be slightly better, as it actually checks for which event fired (entering or exiting combat), and acts appropriately (doesn't just toggle). You also don't have to run the macro every time you log in or reload your UI.