• World of Warcraft Addons
Advertisement
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share

TipTacTalents

  Download the Curse Client

Last Update:
Category: Miscellaneous
Tags:
Project Manager: Aezay
Current Version: 08.04.06
Downloads Today: 4
Downloads Total: 3,913
Favorites: 44
Comments: 12
  • About TipTacTalents
  •  

TipTacTalents - Show Player Talents in Tooltips


An addon to show the talents of players in the tooltip. A cache up to 10 is stored for the last players, so you quickly can see their talents again without having to wait for talents to load.

This addon works completely independent of TipTac, but installing TipTac is recommended to enchance the tooltip further.

There is no command line switch or configureable options for TipTacTalents.

  • Downloads (2)
  •  
  File Name Release Type Game Version Downloads Date  
  TipTacTalents 08.04.06 Release 2.4.0 47 4/6/2008
  TipTacTalents 08.03.24 Release 2.3.3 0 3/24/2008
  • 1 page(s)
Advertisement
  • Screenshots (1)
  •  
  • Comments

Add Comment

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • Aezay said 

    joech26, You cannot see the talents of yourself because of a bug in Patch 2.4, and no I cannot make the range longer, it is 30 yards.

  • joech26 said 

    can it see the people's talent under pvp situation?
    if it can...it didnt work for me...

  • picachu said 

    Dunno really what causes this error or when exactly it happens and i haven't noticed anything not working, but Baud Error Frame still catches this error from the 08.03.26 version of TipTacTalents:

    Interface\AddOns\TipTacTalents\TipTacTalents.lua:25: attempt to index a nil value
    Count: 7

    Call Stack:
    [C]: ?
    Interface\AddOns\TipTacTalents\TipTacTalents.lua:25: in function <Interface\AddOns\TipTacTalents\TipTacTalents.lua:11>

  • Aezay said 

    picachu, guess I just didn't expect for this to happen as I never saw this error myself, anyways I fixed it, thanks.

  • Would be nice to only disable the talent check if we're looking at an opposing faction character, instead of just blocking all PvP targets. Also, should be checking the cache before it checks range, in case we already have the talents for the unit we're viewing.

    Would also be nice if you added a few formatting options (such as allowing us to change the wording - for example I changed mine to say "T" instead of "Talents").

    Cheers for the great addons though - just switched from TinyTip and loving it :)

  • Alright, I've rewritten the inspect function - feel free to use it if you think it works.

    It will now check if a player is friendly (rather than not pvp flagged), and will check the cache before it checks range - that way if you've already inspected someone's talents, you can still see them in the tooltip no matter how far away from you they are.


    -- HOOK: OnTooltipSetUnit
    GameTooltip:HookScript("OnTooltipSetUnit",
    function(self,...)
    uToken = select(2,self:GetUnit());

    if (UnitIsPlayer(uToken)) and (UnitLevel(uToken) > 9 or UnitLevel(uToken) == -1) and ((GetBuildInfo() == "2.3.3" and UnitIsVisible(uToken)) or (UnitIsFriend("player",uToken))) then
    cache.name = UnitName(uToken);
    cache.a, cache.b, cache.c = nil, nil, nil;
    for i = 1, #cache do
    if (cache.name == cache.name) then
    self:AddLine("Spec:|cffffffff "..cache.talents);
    cache.a, cache.b, cache.c = cache.talents:match("(%d+)/(%d+)/(%d+)");
    return;
    end
    end

    if (CheckInteractDistance(uToken,1)) then
    f:RegisterEvent("INSPECT_TALENT_READY");
    NotifyInspect(uToken);
    self:AddLine("Spec:|cffffffff Loading...");
    end
    end
    end

  • Aezay said 

    morbandit, thanks for the posts, for some reason I never thought about having the code load cached players currently out of range, doh! I've added that now, plus a few more changes.

  • Hey mate, cool, good stuff. Not sure if it's the Curse server or just me, but everytime I download the .zip it says it's corrupted and cannot be opened. You may want to re-upload?

    /edit: nevermind, got it. Wondering if we should increase the default cache size to 15 (so it's big enough for everyone in an AB/WSG game)?

  • It would be really, REALLY nice, if you made an alternate form within the addon, so that, when someone IS using TipTac, it adds on this information into TipTacs frame...

    You see, for me, right now, I'm using this Mod, TipTac, AND MyRolePlay...MyRolePlay creates a new Tooltip for character information, TipTac, well, you know, creates a Tooltip for most standard information. As of right now on mouse over, I see TipTacs Information, Then if I click the person, the MyRP tooltip will show. Very Nifty. BUT..To actually see the Talent part of the standard Tooltip, I have to fight and scroll and click many-a-times just trying to find it.

  • Paraflex said 

    Awesome add-on.. Do you think it would be possible to show their resilience in the tooltip as well? Or maybe even a step further by allowing some kind of customization as to what data it retrieves and puts in the tool tip, such as how many pieces of Merc or Veng, etc..

  • Paraflex said 

    It doesn't appear that this mod works when I'm in arena, am I missing something?

  • Aezay said 

    Paraflex
    Showing anything besides talents has very little to do with the function of this addon.
    And no, you aren't missing anything, since version 2.3 I think, viewing the pvp enabled opposite faction's talents isn't possible anymore.

  • 1 page(s)