Is there anyway to do this? I mean I know I can hide the addon but I don’t think that actually disables it ?
I am sure that it would help improve performance in those situations when you don’t care that much about tracking damage and stuff…
Is there anyway to do this? I mean I know I can hide the addon but I don’t think that actually disables it ?
I am sure that it would help improve performance in those situations when you don’t care that much about tracking damage and stuff…
You could write a macro that will toggle the Details damage meter like so and click it anytime you want to toggle it on or off but it will require a reload of the UI as shown in the example below:
/run local a="Details" if IsAddOnLoaded(a) then DisableAddOn(a) else EnableAddOn(a) end ReloadUI()
Thank you.
I gotta say that this is such a COOL macro.
How would you modify this to work on more than one addon? I tried altering it but got nowhere.
/run local b={"Details","MythicPlusTimer","MythicDungeonTools"} for _,a in ipairs(b) do if IsAddOnLoaded(a) then DisableAddOn(a) else EnableAddOn(a) end end ReloadUI()
Use the name of the folder under Interface/Addons/
The name displayed in the in game addons list might be different.
Thank you so much.