Download
(188Kb)
Download
Updated: 03-27-10 02:48 PM
Addon for:
FuBar 3.6.5.
Pictures
File Info
Updated:03-27-10 02:48 PM
Created:unknown
Downloads:97,468
Favorites:672
MD5:

FuBar - Top ScoreFu  Popular! (More than 5000 hits)

Version: v1.0.7
by: phyber [More]

Keeps track of your top hits, heals, criticals, etc.

German translation: Chinkuwaila
French translation: Lantares
Chinese translation: mcc

TO INSTALL: Put the FuBar_TopScoreFu folder into
\World of Warcraft\Interface\AddOns\

Features

  1. Keeps track of damage and heals.
  2. Keeps track of criticals.
  3. Can distinguish between PvP and PvE.
  4. Shift-clicking can put information in the chat box, to send to others.
  5. Can stop tracking of heals.

If you find _any_ bugs, feel free to submit them at
http://phyber.wowinterface.com/porta...118&a=listbugs

If you want to request any features, feel free to submit your ideas at
http://phyber.wowinterface.com/porta...a=listfeatures

SVN: http://svn.wowace.com/root/trunk/FuBar_TopScoreFu
------------------------------------------------------------------------------

2010-03-27:
Many fixes, check the changelogs on wowace.com for a full list.

2009-04-16: v1.0.3
TOC bump for 3.1

2008-11-05: v1.0.2
Upgrade to LibSink-2.0

18/11/2008: v.1.0.1
Updated TOC for 3.0.2
Fixed for 3.0 combatlog changes. Thanks Arrowmaster.

07/05/2008: r72055
Updated for 2.4 combat log changes.
Added many mobs/bosses to the Vulnerable list. Additionally, the vulnerable mobs lists now use the NPCIDs instead of the mobs localised name.
Display '?' instead of '-1' in the top scores list when viewing top scores on mobs where the level was not available.
Maintain a cache of the players currently available spells, this should result in a speed increase when checking if a player really did cast a certain spell (previously the whole spellbook was checked each time).
Added znCN translation. Various updates to other translations.
FuBar is no longer a dependency.

2.3.57669:
Updated TOC to 20300.
Should now track Druids Pounce and Mangle properly.
Should now track Paladins Seal of Vengeance/Vengeance properly.
Should now be able to display floating text through any popular floating combat text type addons.
Added various mobs to the vulnerabilities lists.
Various translation updates.
Various other small fixes.

2.0.36344:
Can now track the Warlock "Hellfire Effect".
Removed an unnecessary Deformat-2.0 reference.
Updated TOC for WoW 2.1.

2.0.32370:
Can now click specific top scores to paste to chat.
Spanish translation by shiftos added.
Notification support for MSBT.
Now uses Parser-3.0 for parsing combat logs.
New option to ignore vulnerable mobs.

2.0.19609:
Updated to work with 2.0.
Added Chinese translation (thanks mcc).

2.0.14429:
Upgraded to AceLocale-2.2, Babble-Class-2.2 and Babble-Spell-2.2.
Fixed colouring of highest normal hit.

2.0.11984:
Fixed a small bug related to PvP and some left over Ace1 code.
Removed silly extra version number (the .2). Not sure what I was thinking.

2.0.2.9945:
Fixed version number, previous should have been 2.0.1 not 2.1.
Really fixed IsOnlyPvP() error when pasting scores into chat.

2.1.9820:
Fixed a small bug with pasting the scores into the chat.

2.0.9446:
Upgraded to FuBar2.
Updated TOC to 11200.

1.1.2989:
changed splash width from 512 to GetScreenWidth()
updated for BabbleLib-1.2
fixed .toc
changed good slashes (/) to evil slashes (\) in the .toc

1.1.1391:
added purging of data.
Now can handle resists.

1.1.1328:
now works for Paladin Judgements

1.1.1111:
updated for procedural tooltips.

1.1.1014:
updated TOC and README.txt

1.1.998:
added deDE translation (thanks to Chinkuwaila)

1.1.937:
Updated for 1.1

1.0.794:
now LoadOnDemand

1.0.762:
no longer records if player is charmed.

1.0.584:
added per-spell filtering.
Added heal-only filtering.

1.0.285:
Updated for 1.0

0.9.99.339:
Fixed typo that made /tsfu not work.

0.9.99.333:
Optimized for Compost.
Changed FuBarTooltip to self.tooltip

0.9.10.243:
Updated for BabbleLib

0.9.9.213:
Fixed BossPanelUtils typo.

0.9.9:
Changed name to Top ScoreFu

0.9.7.175:
Fix releaseDate typo

0.9.6.163:
Can now support trivial (gray) units with an option.

0.9.6.143:
Fixed the code to insert text into the edit box

0.9.5.114:
Shift-clicking now can insert info into the chat edit box.

0.9.5.93:
Fixed bpCompatible typo

0.9.5.75:
Checks if a unit is trivial (gray) better.
Fixed ordering of splash.

0.9.4:
Fixed ordering of chat catches for better localization support.

0.9.3:
Updated TOC to 11000.

0.9.1.1:
Now can reset your scores.
Now can change the position of the splash (only available through command line).
changed "party1pet" to "partypet1", etc.

0.9.1:
Initial
Post A Reply Comment Options
Unread 04-05-06, 08:40 AM  
Kayde
A Murloc Raider
 
Kayde's Avatar
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 54
Uploads: 2
Getting an error with the BossPanel version, not sure if you had it fixed or not for the FuBar version:

Interface/Addons/Ace/AceChatCmd.lua:242: attempt to concatenate field 'option' (a nil value)
I understand it is an error with Ace (I'm using Ace v1.3), but could you have used an older chat cmd that would cause the error? I'm looking into it now, but wanted to give some feedback.
__________________
Kayde of Alleria
"All solutions are simple, they just need to be thought of first." - Kayde
Report comment to moderator  
Reply With Quote
Unread 03-30-06, 04:41 PM  
cheadstina
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 33
Uploads: 1
Record damage on all mobs -BWl vulnerable

To make Topscore record damage on all mobs no matter it's level (except those 3 in BWL that have vulnerabilities to special types of spells) replace this in BossPanel_TopScore.lua

Code:
if level + 4 < UnitLevel("player") then
        return
end
with this:
Code:
if (UnitName("target") == "Chromaggus") then 
        return
end
if (UnitName("target") == "Death Talon Overseer") then 
        return
end
if (UnitName("target") == "Death Talon Wyrmguard") then 
        return
end

Certainly not the most elegant way, but it does the job
Report comment to moderator  
Reply With Quote
Unread 03-29-06, 05:23 PM  
cheadstina
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 33
Uploads: 1
Any hints on how to filter out these 3 mobs(vulnerability.. super high damage)?

"Chromaggus"
"Death Talon Overseer"
"Death Talon Wyrmguard"
Report comment to moderator  
Reply With Quote
Unread 03-29-06, 04:52 PM  
cheadstina
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 33
Uploads: 1
Only counts damage to mobs up to 4 levels under you

For 0.9.4 and older(atleats).
I found out that this only count mobs that are up to 4 levels under you. If you have level 60, then level 48 mobs are green too.

I you want this addon to count all mobs then remove these lines from BossPanel_TopScore.lua:

if level + 4 < UnitLevel("player") then
return
end

I think this should be an option within Topscore... on/off(maybe levels too?)
Report comment to moderator  
Reply With Quote
Unread 03-29-06, 06:20 AM  
K.Rool
A Murloc Raider
 
K.Rool's Avatar

Forum posts: 7
File comments: 19
Uploads: 0
Does this display a nice big line on the screen when you break your records, too?
__________________
K.Rool,
Master of unnecessary knowledge...
Socializer 80%, Explorer 80%, Achiever 26%, Killer 14%
Report comment to moderator  
Reply With Quote
Unread 03-28-06, 07:56 AM  
helsfire
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 1
Uploads: 1
perfect

works 100% perfectly. Great Job.
Report comment to moderator  
Reply With Quote
Unread 03-27-06, 03:06 PM  
Celeri
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Hi !

Seems to be a great replacement of CritLine, but at the moment it doesn't work with a french client.
Last edited by Celeri : 03-27-06 at 04:27 PM.
Report comment to moderator  
Reply With Quote
Unread 03-27-06, 03:30 AM  
dafire
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 216
File comments: 39
Uploads: 2
I have not looked into it because I'm at work right now but I fixed nurfed_combatlog for use with german client some time ago.

The trick is that the german format strings contains numbers for switching the parameters.. so e.g. it had to look for %$1s instead just %s

I used something like string.gsub(globalString, "%%[1234567890$]+s", "(.+)");

I'll have a look when I'm at home since that addon sounds interesting for sure
Report comment to moderator  
Reply With Quote
Unread 03-27-06, 03:16 AM  
cheadstina
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 33
Uploads: 1
Wonderful!

Wonderful with this addon. Then I can get rid off Critline =)
I have two small(?) requests for this addon:
Option Filter out special mobs like TitanCritline (continued) has:
"Don't count damage on special mobs"
"In some high end instances are special mobs that are very vulnarable against special magical attacks, if you activate this option they are not counted in CritLine."

Those mobs are:

TITAN_CRITLINE_MOBFILTER_01 = "Chromaggus";
TITAN_CRITLINE_MOBFILTER_02 = "Death Talon Overseer";
TITAN_CRITLINE_MOBFILTER_03 = "Death Talon Wyrmguard";



Second request:
Option to manually filter out certain types of damage (bomb (Baron Geddon) and burning adrenalin(Vael)).
Would be best if you can manually select which types you want to filter out.

The "Don't count damage on special mobs" is most important in my oppinion. Hope you can find the time to do this =)
Report comment to moderator  
Reply With Quote
Unread 03-27-06, 12:03 AM  
neriak_x
An Aku'mai Servant
AddOn Author - Click to view AddOns

Forum posts: 32
File comments: 39
Uploads: 4
Brilliant

Very nice, I can't wait to install this. You have used your deformat Util to catch the events, right? I'm curious if it's working on a german client. Well, at least I hope
__________________
~ N: "All Semicolons must die!" ~R: "Yay!"
Neriak's Portal
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: