1. #1

    Pitbull4 health text

    So, I just updated Pitbull, now I need to use some stupid lua texts instead of dogtag. Having some problems with the health text on my target.

    This code shows "CurHP/MaxHP | Percent"
    How can I get it to show "CurHP | Percent"?

    Code:
    local s = Status(unit)
    if s then
     return s
    end
    local cur, max = HP(unit), MaxHP(unit)
    return "%s/%s || %s%%",Short(cur,true),Short(max,true),Percent(cur,max)

  2. #2

    Re: Pitbull4 health text

    Code:
    local s = Status(unit)
    if s then
     return s
    end
    local cur, max = HP(unit), MaxHP(unit)
    return "%s || %s%%",Short(cur,true),Percent(cur,max)
    Cheer.


    Quote Originally Posted by Lich King
    "You speak of justice? Of cowardice? I will show you the justice of the grave... and the true meaning of fear."

Posting Permissions

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