1. #1

    Total effective health WA

    Looking for a weakaura that displays my total effective health, in the literal term of just current hp+current absorb in a flat numerical value, doesn't need to have a timer for when the absorbs fall off or anything, just a flat number.

    Unsure if this is possible but figured i'd ask here, cheers!

  2. #2
    The functions you're looking for are CurrentHP and UnitAbsorbs, try writing some code! I'd just make it for you but I'm at work.

  3. #3
    function()
    local a = UnitHealth("player")
    local b = UnitGetTotalAbsorbs("player")
    return a+b
    end

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •