Zerotorescue@13: do Zerotorescue@13: Zerotorescue@13: local function Queue(tradeSkillIndex, amount) Zerotorescue@13: local link = GetTradeSkillRecipeLink(tradeSkillIndex); Zerotorescue@13: local recipeId = tonumber(link:match("|Henchant:([-0-9]+)|h")); Zerotorescue@13: Zerotorescue@13: local newCommand = Skillet:QueueCommandIterate(recipeId, amount); Zerotorescue@13: return Skillet:AddToQueue(newCommand); Zerotorescue@13: end Zerotorescue@13: Zerotorescue@13: local function IsEnabled() Zerotorescue@13: return (Skillet and Skillet.QueueCommandIterate and Skillet.AddToQueue); Zerotorescue@13: end Zerotorescue@13: Zerotorescue@13: IMRegisterCraftingAddon("Skillet", Queue, IsEnabled); Zerotorescue@13: Zerotorescue@13: end