Mercurial > wow > inventory
view CraftingAddons/Skillet.lua @ 76:958aba5f3297
Moved the group functions to the item data class.
Added a new subgroup under the general config group called ?extra? which will provide features such as database character removal and perhaps guild selecting.
Added a new custom .Print function to the addon object which takes two parameters: (string)text, (Color)color. The latter can be retrieved from the addon.Colors var (e.g. addon.Colors.Red).
The ItemId parameter of the ItemData class constructor is now optional.
author | Zerotorescue |
---|---|
date | Sat, 25 Dec 2010 22:07:07 +0100 |
parents | 5006cb0e97c6 |
children |
line wrap: on
line source
do local function Queue(tradeSkillIndex, amount) local link = GetTradeSkillRecipeLink(tradeSkillIndex); local recipeId = tonumber(link:match("|Henchant:([-0-9]+)|h")); local newCommand = Skillet:QueueCommandIterate(recipeId, amount); return Skillet:AddToQueue(newCommand); end local function IsEnabled() return (Skillet and Skillet.QueueCommandIterate and Skillet.AddToQueue); end IMRegisterCraftingAddon("Skillet", Queue, IsEnabled); end