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

  • Your Rating

  • Share
  • Report Abuse

NeedToKnow

  Download the Curse Client

Project Updated:
Files Updated: 05-11-2009
Supports Game Version: 3.1.0
Category: Buffs & Debuffs, and Combat
Tags:

, , and [Edit Tags]

Project Manager: lieandswell
Additional Authors: No additional authors
Current Version: NeedToKnow 2.2
License: GNU General Public License version 3 (GPLv3)
Avg Daily DL (last 30 days): 191
Downloads Total: 62,255
Favorites: 241
Comments: 78
  • About NeedToKnow
  •  

NeedToKnow allows you to monitor specific buffs and debuffs of your choosing as timer bars that always appear in a consistent place on your screen in a consistent color. It's especially useful for monitoring frequently used short-duration buffs and debuffs. For example, a rogue could configure NeedToKnow to show timer bars for Slice and Dice, Rupture, and their own stack of Deadly Poison VII. A death knight could use it to track their own diseases on a mob. NeedToKnow also works with procs and on-use trinkets. The number, size, position, and appearance of timer bars are all customizable.

New in latest version (2.2)

- Added option to show bars with a fixed maximum duration, so that all bars in a group deplete at the same rate.
- Fixed an issue with targetoftarget
- Added koKR and deDE localization

Instructions

General options are available in the Blizzard interface options menu. You can type "/needtoknow" or "/ntk" to lock/unlock the addon. To configure individual bars, right click them while unlocked. Bars work while locked.

When entering your settings, be careful with your spelling and capitalization. Also remember that buffs and debuffs sometimes have different names than the items and abilities that apply them. The Death Knight ability Icy Touch, for example, applies a DoT called Frost Fever.

Note

The reminder icons from previous versions of NeedToKnow have been greatly expanded in functionality and split off into their own addon: TellMeWhen

To do list

Add option to track multiple buffs/debuffs with a single bar.
Add options to customize text display.

  • Downloads (7)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  NeedToKnow 2.2 Release 3.1.0 14,762 5/11/2009
  NeedToKnow 2.1 Release 3.1.0 5,867 4/29/2009
  NeedToKnow 2.0.1 Release 3.0.2 35,949 10/16/2008
  NeedToKnow 2.0 Release 2.4.3 642 9/16/2008
  NeedToKnow 1.2 Release 2.4.3 87 8/15/2008
Advertisement
  • Comments

Add Comment

Add

You need to 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.
  • Kultcher said 

    Forgive me if I'm missing something obvious, but is there any way to track singular buffs such as Sacred Shield or Beacon of Light without having to keep the person targetted or focused? I know that like SpellReminder can do this, is there a way to make NTK do it? If not, any chance of adding such a feature?

    Reply Report Permalink
  • kuroyume said 

    Feature request: would it be possible to have the mod flash a warning when a buff/debuff expires, or when there are x seconds to expire?

    Reply Report Permalink
  • chubaka5 said 

    "I have been having some trouble with NTK lately. Specifically on Iron Council, sometimes the debuffs I apply to the bosses are not showing on their portraits. When this happens, NTK seems not to track them. Is there a way to fix this?"

    -Same problem, alot of times NTK won't register my Rupture skill but the other spells seem to work, any fix?

    Reply Report Permalink
  • Feature Request: Sort by time remaining ascending or descending.

    Reply Report Permalink
  • Great addon, but it's not precise enough for me. I modified it to show tenths of a second once the remaining duration is below 10s.

    NeedToKnow.lua:336

    Change:

    self.time:SetFormattedText(SecondsToTimeAbbrev(self.timeLeft));

    to

    self.time:SetFormattedText(NeedToKnow.FormatBarTime(self.timeLeft));


    Add the following function at the end of the file.

    function NeedToKnow.FormatBarTime(timeLeft)
    if timeLeft <= 10 then
    return ('%.1f'):format(timeLeft) .. " s"
    elseif timeLeft <= 60 then
    return ('%d'):format(timeLeft) .. " s"
    else
    return min:format(math.ceil(timeLeft / 60)) .. " m"
    end
    end

    Reply Report Permalink
  • In some odd cases, the following was causing lua errors.

    return min:format(math.ceil(timeLeft / 60)) .. " m"

    change to:

    ('%d'):format(math.ceil(timeLeft / 60)) .. " m"


    Reply Report Permalink
  • ddkees said 

    Might be nice to switch the bars from horizontal to vertical, too.

    Reply Report Permalink
  • added russian localization in comments on wowinterface

    Reply Report Permalink
  • Works great so far, but is there a way to have the bars show the CD of the attack you're using and not just the buff/debuff duration (like have the bar show the 25 second CD of Feign Death and not the 6 min duration).

    Reply Report Permalink
  • Papajan said 

    I'm a long time ClassTimer user, and NTK has some really nice options that I like better than ClassTimer - the configuration of bars is very intuitive and you can have seamless merging of buffs/debuffs/etc. Setting self-only or any buff/debuff by bar is also incredibly useful. Having static locations of all the timers relative to one another is nice too.

    But there are a few options that make it so that I can't really switch to using NTK quite yet:
    -for whatever reason, having blank bars in the middle really bothers me. Sometimes it's unavoidable if you want to try and setup a single bar group for both cat and bear form (same problem as Karthis). It's somewhat similar for my mage cause I want the order Living Bomb/Pyroblast/Imp Scorch, but the Pyro one will be empty most of the time.
    -not showing a decimal place on the seconds really hurts me sometimes. Like on my warlock, I tend to start casting Immolate when my GCD/casting is free and the debuff has 1.5s or less on it.
    -configuration of colors is a pain in the butt. Like I can't get them all exactly the same for one, but configuring them all separately is annoying. Maybe if it were possible to color them (by default) via standard spell class colors (SCT has a list of colors you might grab in their code)
    -there aren't enough characters allowed in the debuff name to fit "Improved Scorch,Winter's Chill,Shadow Mastery"

    Reply Report Permalink
  • karthis said 

    Feature request: As a feral Druid it would be awfully handy to be able to show/hide groups based on the form (stance) I'm currently in.

    Reply Report Permalink
  • I have been having some trouble with NTK lately. Specifically on Iron Council, sometimes the debuffs I apply to the bosses are not showing on their portraits. When this happens, NTK seems not to track them. Is there a way to fix this?

    Reply Report Permalink
  • msheahen said 

    Thanks for keeping this addon going; I absolutely love it!

    Have you given any thought to allowing wildcard characters in the buff/debuff names, thereby allowing a single bar to take care of, for example, Mangle (Cat) and Mangle (Bear)? I think this would be extremely useful.

    Thanks again!

    Reply Report Permalink
  • karthis said 

    I modified NTK last week to display aura durations relative to a set amount of time (20 seconds) instead of the aura starting time. The change can be accessed here (and I also added in Tanordheim's change, which is amazing):

    http://teethandclaws.blogspot.com/2009/05/needtoknow-t-update.html

    Ideally this would be turned into an option so that a user could specify the time to relate buff durations to, or else turn the feature off altogether. Not being a LUA programmer (and not having the time to learn) I decided that this was beyond my capabilities to attempt at the moment.... the UI stuff looks non-trivial.

    Reply Report Permalink
  • The UI stuff is indeed non-trivial. It's the bulk of the coding work, usually. Luckily I've done it! I was already working on version 2.2, which adds the option you mention to show all bars in a group with a fixed maximum duration.

    Reply Report Permalink
  • karthis said 

    Excellent! Thanks, and keep up the great work.

    Reply Report Permalink
  • ibmoose said 

    Okay, redid my interface and brought up newest NTK version. Can't get it to proc anything. Worked 30 minutes fiddling with Lock and Load, player buff. No go, nothing. Any ideas??

    Reply Report Permalink
  • jvanber said 

    The space doesn't seem to matter. As soon as I add a second spell, the entire line is ignored.

    For instance, I track Faerie Fire as follows:

    Faerie Fire,Faerie Fire (Feral)

    If I simply use: Faerie Fire (Feral)
    it is tracked fine.

    Whether I use a space after the delimiter makes no difference, and it doesn't matter which order I seem to place the spells. As soon as I add multiple spells, they aren't tracked. I didn't have this problem in 2.01

    Reply Report Permalink
  • Are you sure you've updated the addon with my changes at http://www.7rond.net/wow/needtoknow/? Multiple buffs per bar isn't in the standard version of NeedToKnow.

    Reply Report Permalink
  • WkNd said 

    For it to work you can't have any space after the comma it seems.
    "Mangle(Cat),Mangle(Bear)" is correct
    "Mangle(Cat), Mangle(Bear)" will not work, however

    Reply Report Permalink
  • Similar Addons
  •  

Average downloads per day

  1. 19,298 Deadly Boss Mods Boss Encounters, and Combat
  2. 8,269 BigWigs Bossmods Boss Encounters, and Combat
  3. 8,240 HealBot Continued Buffs & Debuffs, Unit Frames...
  4. 6,909 OmniCC Combat
  5. 6,330 Recount Combat