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

  • Your Rating

  • Share
  • Report Abuse

FriendsFacts NSC

  Download the Curse Client

Project Updated:
Files Updated: Mon, Dec 29 2008
Supports Game Version: 3.0.3
Category: Unit Frames
Tags:

, , and [Edit Tags]

Project Manager: Kring
Additional Authors: No additional authors
Current Version: 8
License: All Rights Reserved
Avg Daily DL (last 30 days): 12
Downloads Total: 15,440
Favorites: 182
Comments: 23
  • About FriendsFacts NSC
  •  

FriendsFacts NSC (no Sea Cosmos) 2

This add-on is based on version 1.1 of FriendsFacts from AnduinLothar which did not use Sea nor Cosmos. It is updated to work with WoW 2.0. This is for all the people who would like to use FriendsFacts without the huge Sea/Cosmos overhead.

All Credit belongs to AnduinLothar.

Remember friends level, class, location and the last time you've seen them online after they've logged off and show then in your friend list.

      • Changelog

Version 2 (based on FriendsFacts v1.1 from AnduinLothar) Replaced the RegisterForSave() with an entry in the toc file. Additionaly, report the time you've seen the user online last. The look is more identical with the default WoW look. Made Friend List Realm Specific (Warning! All old friend data will be lost). (inspired by FriendShare 1.2)

  • 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  
  FriendsFacts NSC 8 Release 3.0.3 2,344 12/29/2008
  FriendsFacts NSC 7 Release 3.0.2 1,360 10/18/2008
  FriendsFacts NSC 6 Release 2.4.3 484 7/18/2008
  FriendsFacts NSC 5. Release 2.4.0 136 4/17/2008
  FriendsFacts NSC 4. Release 2.3.0 135 11/24/2007
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.
  • tapi0 said 

    Update for 3.1?

    Reply Report Permalink
  • marscrab said 

    Hi Guys. You may download workable update for this addon in this address.
    http://www.cosmosui.com/addons.php?info=FriendsFacts
    It does not need sea. I've tried it under 3.0.

    Reply Report Permalink
  • Kring said 

    This add-on is based on version 1.1 of the Cosmos one. I prefer the lightweight one, that's why I maintain the old version with small fixes.

    Reply Report Permalink
  • jackos said 

    is this updated for wotlk?

    Reply Report Permalink
  • Kring said 

    This does work under WotLK

    Reply Report Permalink
  • Morgora said 

    I love this mod. But, right now, it does not work for me. I use Windows Vista (on a laptop).

    Reply Report Permalink
  • Chance of an update for 3.0?

    Reply Report Permalink
  • ysty said 

    does this work for mac?

    Reply Report Permalink
  • Felsmukk said 

    Update please?

    Reply Report Permalink
  • netza said 

    A nice update to friendsfacts but it only shows name and location. :(

    Reply Report Permalink
  • Rivald said 

    Hi ! "FriendFacts NSC will not allow you to add more than 50 friends to your friend list because that's not what it was designed for."

    I know, but maybe you could put this with your Friendsshare together and prevent the 50 freinds cap. Like HoloFriends do.

    greets,

    Rivald

    Reply Report Permalink
  • Kring said 

    The 50 friends limit is a limit of the Blizzard server. it is not possible to increase the amount of friends beyond 50. If an add-on allows you to manage more than 50 friends, it will not receive notifications from the server when these friends come online. Therefore, it has to continuously poll the server to see which friends are online. This is a) slow, b) a waste of server resources and c) a waste of client resources.

    FriendFacts NSC will not allow you to add more than 50 friends to your friend list because that's not what it was designed for.

    Would be nice if Blizzard would rise this limit, I aggree. :-)

    Reply Report Permalink
  • Rivald said 

    Very nice addon :)

    i hope there will be a version that works with holofriends or friendsshare (but withouth 49 friends cap).

    keep up the good work :)

    greets,

    Rivald

    Reply Report Permalink
  • Kring said 

    @klamb

    Hmm?

    Reply Report Permalink
  • klamb213 said 

    I dont think this is working... : (

    Reply Report Permalink
  • egingell said 

    @ Kring

    Don't remove it on principal... There's no Copywrite notice, not even a GNU notice.

    Anyway, if this will replace an old guild with no guild, I will be happy.

    Edit: Hmmm... It doesn't seem to work at all.

    Reply Report Permalink
  • Kring said 

    @Zag: No, it doesn't do that. I use NoteIt for that.

    Edit: Uploaded a screenshot.

    Reply Report Permalink
  • Kring said 

    > You realize that FriendsFact only requires SeaHooks and it's > already embedded?

    The newer versions are really bloated in comparison to 1.1, which did all I needed. I continued to use a 1.1 with minor changes. I thought it might be valuable to other users.

    > I also hope you realize you're infringing on my copywrite.

    Do I? Why is there no copyright mentioned in your source file? I gave credit to you and I left you as original author in the TOC file...

    Do you want me to remove the file from curse?

    Reply Report Permalink
  • KarlKFI said 

    You realize that FriendsFact only requires SeaHooks and it's already embedded?

    I also hope you realize you're infringing on my copywrite.

    Reply Report Permalink
  • jeskeca said 

    Thanks for the update. I really want to know when I last saw the friend, but I find the full dates hard to use. I changed it to show the number of days (or weeks) since I've last seen the person.

    if ( level ) and ( class ) and ( lastSeen ) then
    local lastSeenMsg = "-"
    local daydelta = (time() - tonumber(lastSeen)) / 86400
    if daydelta < 1 then
    lastSeenMsg = "today"
    elseif daydelta < 2 then
    lastSeenMsg = "yesterday"
    elseif daydelta < 21 then
    lastSeenMsg = format("%i days ago", daydelta)
    else
    lastSeenMsg = format("%i weeks ago", daydelta / 7)
    end

    infoText:SetText(format(TEXT(FriendsFacts_Constants.FRIENDS_FACTS_LEVEL_TEMPLATE_LONG), level, class, lastSeenMsg))
    elseif ( level ) and ( class ) then
    infoText:SetText(format(TEXT(FRIENDS_LEVEL_TEMPLATE), level, class))
    end

    Reply Report Permalink
  • Similar Addons
  •  

Average downloads per day

  1. 8,240 HealBot Continued Buffs & Debuffs, Unit Frames...
  2. 4,883 X-Perl UnitFrames Unit Frames, and Raid Frames
  3. 2,435 PitBull Unit Frames 4.0 Unit Frames
  4. 1,869 Grid Unit Frames
  5. 1,571 Gladius PvP, Unit Frames, Combat,...