Mercurial > wow > inventory
diff ItemCountAddons/ItemCount.lua @ 50:9607b3251655
Added OnSelect event support to both item count as crafting addons.
Added basic local item count data support.
Fixed "Show in summary when below" option to allow a value of up to 10.000%.
Summary should now respect virtual groups.
author | Zerotorescue |
---|---|
date | Sat, 18 Dec 2010 00:22:06 +0100 |
parents | 8f5c02113c5c |
children | 03c0610e9c1e |
line wrap: on
line diff
--- a/ItemCountAddons/ItemCount.lua Fri Dec 17 00:51:00 2010 +0100 +++ b/ItemCountAddons/ItemCount.lua Sat Dec 18 00:22:06 2010 +0100 @@ -12,6 +12,12 @@ return (ICGetItemCountTotal and ICGetItemCountCharacter); end - IMRegisterItemCountAddon("ItemCount", GetTotalCount, GetCharacterCount, IsEnabled); + local function OnSelect() + local addonName = "|r|cfffed000ItemCount|r|cffff6600"; + + print("|cffff6600Note: " .. addonName .. " can't record mailbox item data and thus this will not be included in any item counts.|r"); + end + + IMRegisterItemCountAddon("ItemCount", GetTotalCount, GetCharacterCount, IsEnabled, OnSelect); end