1. #1

    Addon that shows "Target of target" on nameplate?

    In arena I have everything bound to arena123 macros so everything I do is instant and easy accept for targeting. I'm trying to negate the need to target anything in arena by putting all the information that you would normally see while targeting over peoples heads. I need to find a way to show the "target of target" on the nameplate instead of on the portrait. Is this possible?

  2. #2
    "target of target"? sounds like you just want "target"

  3. #3
    Deleted
    From an API point of view, it's possible (you can match arena1 through arena3 to nameplates as far as I'm aware, and all of those should have respective -target unitIDs).

  4. #4
    No what I'm saying is. You know how in the blizzard interface you can turn on "target of target" which allows you to see what your target is looking at? I want that on the name plates instead of on the portrait.

    - - - Updated - - -

    Actually is it possible to replace the nameplates over peoples head with the blizzard portraits? that would be exactly what I'm looking for. I need to be able to see all the information on a portrait without targeting it.

  5. #5
    The best you can really hope for is an addon that updates info on mouseover. It requires you to roll your mouse around nameplates to see/refresh the information, but at least you can do that quickly without clicking to re-target all the time.

    I've used TidyPlates / Threat Plates for that in the past. Won't give you all information but it does give target information. I'm sure there are plenty others that do similar.
    Last edited by pnutbutter; 2014-02-10 at 09:03 AM.

  6. #6
    There is no way to replace nameplates with blizzard portraits?

  7. #7
    by portrait do you mean the whole unit frame or just the picture of the character's face?

  8. #8
    Like the portrait when you target someone. The whole unit frame. Instead of being on your UI it would be over their heads.

  9. #9
    Yeah, unfortunately you would have to either target or mouseover the unit in order to be able to transfer that unit's complete information to the nameplate. If they're not your target or mouseover the only info you can get for the nameplate is health and name.

  10. #10
    Deleted
    Well, if the addon was specifically designed for arena, arena1-3 are always available, so you wouldn't have to target/mouseover for information to update.

  11. #11
    Quote Originally Posted by Treeston View Post
    Well, if the addon was specifically designed for arena, arena1-3 are always available, so you wouldn't have to target/mouseover for information to update.
    Yeah, I guess if it relies on matching names with the assumption that all enemies have unique names. I didn't think of that.

    Don't know any arena addons that provide it, though.

  12. #12
    Deleted
    Last I checked you could retrieve GUID from nameplate, and UnitGUID will work just fine on arena opponents.

  13. #13
    I didn't know you could do that.

    I just looked at ElvUI, TidyPlates, and KuiNameplates, and they all use this method in some incarnation
    Code:
    function getUnit(nameplate)
        if UnitExists("target") and nameplate:GetAlpha()==1 then
            return "target"
        elseif select(3,nameplate:GetChildren():GetRegions()):IsShown() then
            return "mouseover"
        end
    end
    The only place I see a guid originating is from calling UnitGUID() after getting the unitID.

  14. #14
    so what does this all mean for me? lol I have no idea what your talking about.

Posting Permissions

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