Mercurial > wow > inventory
view CraftingAddons/AdvancedTradeSkillWindow.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 | 5006cb0e97c6 |
children |
line wrap: on
line source
do local function Queue(tradeSkillIndex, amount) local link = GetTradeSkillItemLink(tradeSkillIndex); local itemName = link:match("%[([^%[%]]*)%]"); return ATSW_AddJob(itemName, amount); end local function IsEnabled() return (ATSW_AddJob); end IMRegisterCraftingAddon("AdvancedTradeSkillWindow", Queue, IsEnabled); end