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

  • Your Rating

  • Share

BonusScanner2.0

  Download the Curse Client

Last Update:
Category: Libraries
Tags:
Project Manager: jmlsteele
Current Version: 2.3
Downloads Today: 19
Downloads Total: 59,271
Favorites: 502
Comments: 59
  • About BonusScanner2.0
  •  

An updated version of BonusScanner, a utility addon that scans your equipment for various bonuses such as Attack Power.

This addon was originally written by Crowly.

From the original page:

Scans your equipment for cumulative bonuses like additional spell damage and sums them up.

Basic Usage: BonusScanner.active = 1, when BonusScanner is active BonusScanner.bonuses always contains a table of the bonuses of the current equipment. Example: BonusScanner.bonuses['HEAL'] contains the current healing bonus.

BonusScanner:GetBonus(bonus) - returns total of a certain bonus type or 0 if not that bonus type is not present. - example: BonusScanner:GetBonus('CRIT') returns crit chance bonus of your current equipment.

BonusScanner:GetSlotBonuses(slotname) - returns table of bonuses on a certain item slot or an empty table if nothing present. - example: BonusScanner:GetSlotBonuses('Trinket0') returns bonuses on your first trinket slot

BonusScanner:GetBonusDetails(bonus) - returns slot distribution of a certain bonus type


BonusScanner:GetSlotBonus(bonus, slotname) - returns the bonus amount of a certain bonus type on a certain item slot.. - example: BonusScanner:GetSlotBonus('DMG', 'Head') returns the spell damage bonus on your helmet.

BonusScanner_Update() - gets called, after bonuses get updated. Empty function to hook into.


BonusScanner also provides a slash command, mostly for debugging purposes. The Command is /bonusscanner or /bscan. The options are: - /bscan show - shows all bonuses of your current equipment - /bscan details - shows bonuses with slot distribution - /bscan <itemlink> - shows bonuses of linked item (insert link with Shift-Click) - /bscan <slotname> - shows bonuses of given equipment slot - /bscan target - shows bonuses for your target's equipped gear (must be in inspect range)

  • Downloads (4)
  •  
  File Name Release Type Game Version Downloads Date  
  BonusScanner2.0 2.3 Release 2.0.6 214 2/20/2007
  BonusScanner2.0 2.2 Release 2.0.3 0 1/12/2007
  BonusScanner2.0 Bonus Scanner 2.1 Release 2.0.0 0 12/21/2006
  BonusScanner2.0 Bonus Scanner 2.0 Release 2.0.0 0 12/17/2006
  • 1 page(s)
Advertisement
  • 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.
  • you're thinking of BOTTOMscanner, not BONUSscanner

  • ryoohki said 

    The latest version is available in the auctioneer pack download. It's included in the zip.

  • Gronyon said 

    arf, and the files are no longer on your website.

    Anyone knows an addon up to date, with if possible french translation, that do the same, or best that work like SuperInspect ^^

    My goal is to be able to quickly analyse a raidmate equipment.

  • Gronyon said 

    Hi.

    What should be done to help you localize in French ?

  • Updated this again, the bugfixes suggested by Denival are valid and have been ofc implemented in my version long ago. Embedded text color coded items were a pain to debug, simply reinstating the old enchantment fix made the trick. In addition I fixed a few more issues :

    - Added missing shield block rating pattern, values are added to regular block rating

    - Added "Minor Speed increase and +9 Stamina" pattern, correcting overall stamina values

    - Added pattern for Vitality on boots

    - Refined the generic parser to support metagems with the "&" separator

    - Added a couple of haste rating patterns to support Black Temple item equip bonuses (possibly more out there)

    Link is : http://www.lamerclub.com/bandit/BonusScanner/BonusScanner2.5.rar http://www.lamerclub.com/bandit/BonusScanner/Preferences.rar

    The preferences.lua file is required to be unzipped to the ..\Interface\AddOns\Titan\TitanItemBonuses folder (overwriting the old one) so that TitanItemBonuses can properly display the values scanned by BonusScanner.

    • Only English clients are supported on this version.

    Still hoping that jmsteele comes back so he can do a proper update.

    Edit : Will be supporting the mod, separately here : http://wowui.incgamers.com/ui.php?id=4613

  • Denival said 

    OK, here are a few bugfixes that you may find useful:

    Localization.lua:

    After line 112, add to fix some missing spell crit items:

    { pattern = "Improves spell critical strike rating by (%d+)%.", effect = "SPELLCRIT" },

    BonusScanner.lua:

    Line 435, change to fix error when certain special items are being used:

    BonusScanner:Debug("Special match found: \"" .. p.pattern .. "\"");

    After line 355, add to fix for certain BC items that have embedded text color codes:

    tmpStr = string.gsub( tmpStr, "|c%x%x%x%x%x%x%x%x", "" );

    tmpStr = string.gsub( tmpStr, "|r", "" );

  • Yes, it works with titanbonuses, at least it does for me. As for memory use, how much memory is it using ? I don't see it in my top 3 addons and the 3rd one on my list (wardrobe2) uses around 2.1 Megs. Optimization would be an idea yes, but even then with the amount of patterns and enchants needed to be parsed/checked I'm not sure how lower it can get.

  • coani said 

    tristanian: does this work with titanbonus or does that need separate update too? also... I been seeing bonusscanner slugging away in top3 memory eaters under the new performance icon, can anything be done to reduce the memory use?

  • http://www.lamerclub.com/bandit/BonusScanner/BonusScanner.rar

    Should work for 2.1. This is a slightly modified BonusScanner, with essentially the same features and a few updated patterns. Currently works only in English clients, due to lack of translation for other localization files.

  • I hope we get a major update for 2.1. It was already wonky before the update, not tagging a huge chunk of BC item bonuses.