WA für Eisbarriere

Moin,
hat jemand eine WA, welche anzeigt, wie viel Schaden noch absorbiert werden kann? Für Classic finde ich eine Menge, leider nicht für Retail.
Danke.

Grüße

Diese WA habe ich gefunden und sie funktioniert. Das Schöne daran : Sie funktioniert für jede Art von Absorb-Shield egal ob Arkan, Feuer oder Frost. Sogar für andere Klassen soll es klappen (nicht getestet von mir).


I’m going to assume you just want a way to show your total absorb remaining (and don’t really care what ability it is from).

Make a text WeakAura, under Display -> Display Text -> type %c and press accept.

Update Custom Text On… -> Trigger Update
Expand Text Editor under Custom Function and add the following code:
Code:

function()
local absorb = UnitGetTotalAbsorbs(„player“)

if absorb == 0 then
    absorb = ""
end

return(absorb)

end

Go to the Trigger page next and do the following:
Type -> Custom
Event Type -> Event
Event(s): UNIT_ABSORB_AMOUNT_CHANGED

Custom Trigger expand this and add the following code:
Code:

function()
return true
end

Dieses Thema wurde automatisch 90 Tage nach der letzten Antwort geschlossen. Es sind keine neuen Nachrichten mehr erlaubt.