Download
(7Kb)
Download
Updated: 03-23-09 04:28 PM
Pictures
File Info
Updated:03-23-09 04:28 PM
Created:unknown
Downloads:8,519
Favorites:44
MD5:

Remembrance  Popular! (More than 5000 hits)

Version: r1159
by: Shadowed [More]

Remembrance is a simple/lightweight/"superomgefficent" mod that takes advantage of the new inspection talent apis provided in 2.3, one thing it does is let you quick inspect people who are within inspection ranged (30 yards). You can type /remin <unit> to get a quick tree output of the person.

Slash commands: /remembrance for a list of available slash commands, /inspect (/in shorthand) to pull up the full inspection ui or /reminspect (/remin shorthand) to get a summary report that'll look like "name-server: ##/##/##"

Optional Files (0)


Post A Reply Comment Options
Unread 11-09-08, 03:53 PM  
Yeoman
A Kobold Labourer

Forum posts: 1
File comments: 6
Uploads: 0
Update for WoW 3.0 possible? Or maybe this addon is obsolete?
Report comment to moderator  
Reply With Quote
Unread 02-16-08, 07:31 PM  
Shadowed
...
Featured Addon Author

Forum posts: 387
File comments: 2513
Uploads: 83
Remembrance already does this, should read /remembrance. And SSAF won't get support for talent names.
Report comment to moderator  
Reply With Quote
Unread 02-16-08, 06:33 PM  
HexNeo
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 1
can you please create possibility in Remembrance or ArenaFrame to show talents as words for example 17/0/44 (frost) or simple frost
so it will be more userfriendly

thx.
Report comment to moderator  
Reply With Quote
Unread 01-15-08, 12:14 PM  
Shadowed
...
Featured Addon Author

Forum posts: 387
File comments: 2513
Uploads: 83
Hrm, why didn't those get added, it should be fixed in next update.
Report comment to moderator  
Reply With Quote
Unread 01-15-08, 12:10 PM  
tattooedpierre
An Aku'mai Servant
 
tattooedpierre's Avatar
AddOn Author - Click to view AddOns

Forum posts: 38
File comments: 95
Uploads: 4
Perhaps as the previous poster says, there is something missing from this upload?

But regardless I cannot seem to get the /rem command to work. Despite the fact it is definetely active in my 'Addons' pane. Checked the other (older) versions but really am not familiar enough with the code to determine what might be missing/wrong.

Anyways, excellent mod .. vey useful and more-so now that I can remind myself of the talent trees.
Last edited by tattooedpierre : 01-15-08 at 12:10 PM.
Report comment to moderator  
Reply With Quote
Unread 01-15-08, 06:52 AM  
Isman
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
Hello, it seems there are a few libs missing in the .zip file (revision 506)
anyway, great job as always !
Last edited by Isman : 01-15-08 at 06:52 AM.
Report comment to moderator  
Reply With Quote
Unread 01-03-08, 02:42 PM  
Shadowed
...
Featured Addon Author

Forum posts: 387
File comments: 2513
Uploads: 83
If Grayhoof wants to add Remembrance support to Proximo he can, but I have no plans on adding support for it.
Report comment to moderator  
Reply With Quote
Unread 01-03-08, 02:25 PM  
zero_fenix
A Murloc Raider

Forum posts: 8
File comments: 3
Uploads: 0
I personally use proximo because it works well with my partners and it's what I've been using for the longest time, is there any way you could integrate rememberance to do the samething it does with your arena frame, to proximo?
Report comment to moderator  
Reply With Quote
Unread 12-11-07, 05:16 PM  
Bestplay3
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Originally posted by Shadowd
Wouldn't likely happen since I don't see much use in it, chances are if you know what Affliction means you know that 41+ points would be affliction.

I have to say personally this would be a feature I would love. I'm not an expert in the talent trees of other classes since the only class I've ever really played is a priest. When I see the ##/##/## it honestly doesnt mean a lot to me since I don't know what spec is in what position, and in the fast paced arena environment seeing that word would be great in my opinion.
Report comment to moderator  
Reply With Quote
Unread 12-07-07, 10:43 AM  
vespoli
A Defias Bandit

Forum posts: 3
File comments: 11
Uploads: 0
After testing it in arenas I realized that you can't use party chat in them! D'oh. Anyways, for anyone who wants to do this just replace "PARTY" in the second Print command with "BATTLEGROUND." It should look like the following:
Code:
if( GetNumPartyMembers() == 0 or not select(2, IsActiveBattlefieldArena()) ) then
self:Print(name .. " (" .. class .. "): " .. talent)
elseif( GetNumPartyMembers() > 0 and not select(2, IsActiveBattlefieldArena()) ) then
SendChatMessage(name .. " (" .. class .. "): " .. talent, "BATTLEGROUND")
end
Report comment to moderator  
Reply With Quote
Unread 12-02-07, 05:51 PM  
Shadowed
...
Featured Addon Author

Forum posts: 387
File comments: 2513
Uploads: 83
Correct, the then was missing yours is right.
Report comment to moderator  
Reply With Quote
Unread 12-02-07, 04:48 PM  
vespoli
A Defias Bandit

Forum posts: 3
File comments: 11
Uploads: 0
Did you forget a "then" after the 3rd line? I got an .lua error:
"Interface/Addons/Remembrance/Remembrance.lua:61: 'then' expected near 'SendChatMessage'

That is to say, should it be
Code:
if( GetNumPartyMembers() == 0 or not select(2, IsActiveBattlefieldArena()) ) then
self:Print(name .. " (" .. class .. "): " .. talent)
elseif( GetNumPartyMembers() > 0 and not select(2, IsActiveBattlefieldArena()) ) then
SendChatMessage(name .. " (" .. class .. "): " .. talent, "PARTY")
end
Report comment to moderator  
Reply With Quote
Unread 12-02-07, 04:35 PM  
vespoli
A Defias Bandit

Forum posts: 3
File comments: 11
Uploads: 0
Thanks for the (quick) reply and thanks again for the mod!
Report comment to moderator  
Reply With Quote
Unread 12-02-07, 01:04 PM  
Shadowed
...
Featured Addon Author

Forum posts: 387
File comments: 2513
Uploads: 83
Go to line #57 you'll see

self:Print(name .. " (" .. class .. "): " .. talent)

Replace that with

if( GetNumPartyMembers() == 0 or not select(2, IsActiveBattlefieldArena()) ) then
self:Print(name .. " (" .. class .. "): " .. talent)
elseif( GetNumPartyMembers() > 0 and not select(2, IsActiveBattlefieldArena()) )
SendChatMessage(name .. " (" .. class .. "): " .. talent, "PARTY")
end

Should do the trick
Report comment to moderator  
Reply With Quote
Unread 12-02-07, 11:21 AM  
vespoli
A Defias Bandit

Forum posts: 3
File comments: 11
Uploads: 0
Thanks for the update Shadowd! One last tiny request: is there a way to output the class and associated talent data in arenas to party chat? I tried messing with the .lua without success =(
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.