Macro Toggle for new Dmg Meter

So with the new changes, I’m looking for something I had with details.

I had a simple macro to show / hide details when I wanted to look at it. Does anyone know of something similar for the new in game dmg meter? It does a decent enough job for what I need but I dislike it open all the time!"

Maybe there is prettier solution, but this should work:

/run if DamageMeterSessionWindow1:IsShown() then DamageMeterSessionWindow1:Hide() else DamageMeterSessionWindow1:Show() end

1 Like

Thats perfect.

I did have to set it to Display as always on. Then copied what you posted into a macro and it works as indended.

Many thanks for the help!

But you’ll have to click macro after every loading, I believe. Technicaly there should be possibility to toggle CVar to turn DmgMeter on/off, but I don’ know the name of the value.

Found it. Try this instead:
/run SetCVar(“damageMeterEnabled”, 1 - GetCVar(“damageMeterEnabled”))

That did not appear to do anything. It’s no issue though just pushing the button when required.

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