1. #1
    Deleted

    LF Addon: shows who is targeting

    Just for raiding and dungeons i would like to see who is targeting my target, or even more advance a window where we can see who is targeting the Main assist target. If anyone has any pls link

  2. #2
    Deleted
    xperl . 10char

  3. #3
    I am Murloc! Irony's Avatar
    10+ Year Old Account
    Join Date
    Apr 2010
    Location
    Maritimes.
    Posts
    5,916
    Skim reading ftl!
    Anyway, so some actual useful information, Mainassist was a great add-on for this but hasn't been updated in a long time, the only alterative I know of is http://wow.curse.com/downloads/wow-a...getassist.aspx
    Doesn't have all the functionality you want, but is still a good addon for what it is.
    Last edited by Irony; 2011-01-10 at 06:47 PM.

  4. #4
    Deleted
    Quote Originally Posted by Irony View Post
    Almost any unit frame addon will have target of target, as well as focus' target.
    He wants to know how many people are targetting his target.

    Will write something for you after this boss, sec.

  5. #5
    Deleted
    Quote Originally Posted by Treeston View Post
    He wants to know how many people are targetting his target.

    Will write something for you after this boss, sec.
    thank you in advance

  6. #6
    Deleted
    Code:
    local a = CreateFrame("Frame")
    a:SetPoint("BOTTOMLEFT", 0, 0) -- adjust those zeros for positioning. first zero is horizontal, second zero is vertical
    a:SetSize(1,1)
    a.text = a:CreateFontString()
    a.text:SetFont("Fonts\\FRIZQT__.TTF", 18, "OUTLINE") -- adjust font size
    a.text:SetTextColor(1,0,0) -- text color (r,g,b)
    a.text:SetPoint("CENTER")
    a:SetScript("OnUpdate", function(self, elapsed)
        self.elapsed = (self.elapsed or 0)+elapsed
        if self.elapsed >= 1 then
            self.elapsed = 0
            local nT=0
            local n,r = GetNumRaidMembers()
            if n>0 then
                r="raid"
            else
                n=GetNumPartyMembers()
                r="party"
            end
            if n>0 then
                t.text:Show()
                for num=1, n do
                    if UnitIsUnit("target", r..n.."target") then
                        nT=nT+1
                    end
                end
                t.text:SetText(nT)
            else
                t.text:Hide()
            end
        end
    end)
    How to use. Untested. Report back with issues.

  7. #7
    Deleted
    As I already said, xperl already has this function.. You can see exactly who is targetting your target

  8. #8
    Deleted
    Bumping for a rewrite of this code to make it work in 4.1

  9. #9
    I believe TipTac can do this currently without issue.

  10. #10
    Deleted
    I briefly tried TipTac out. But found it to be to advanced.

    I simply want a frame that tells me how many, and who is targeting my target. (I know x-perl has this. But I want it lightweight)
    Not thru the tooltip. But a dedicated frame to only that.
    Last edited by mmocb818219421; 2011-05-08 at 01:35 PM.

  11. #11
    http://wow.curse.com/downloads/wow-a...c-targets.aspx

    this does that. It will also show who, how many, and what target each person is on, as well as showing which one you are on and each target's mark and current health. It is customizable if you want it to do more/less.

  12. #12
    Deleted
    Quote Originally Posted by Grandmazter View Post
    Bumping for a rewrite of this code to make it work in 4.1
    Any Lua errors with 4.1? From a quick glance, it should still work.

  13. #13
    This is an older thread but I wanted to see if there has been any new addons that anyone knows of atm

  14. #14
    Shadowed Unit Frames supports this. You just need to set it up on your "Target" frame and change the "text" that is displayed in the appropriate "Text" tab section.
    Virtualize <Solution> @ Greymane | virtual#1157 | Web | YouTube | Twitter | Facebook
    Hermes - Share cooldown status with raid/party.
    Skada: Survivability - Show when a character died during a specific attempt.
    AffDots - Track the potency of your DoTs on a target.

Posting Permissions

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