Due to popular demand, I have released my crafting add-on. Myself and a few friends had been using it privately for the few months before the first release. Then I finally got around to doing a little cleanup to prepare it for release. I hope everyone enjoys it!
TTCraftAddict
Summary
This is a stand-alone addon that works in conjuction with Blizzard's built in Trade Skill window. When in use, TTCraftAddict will show the currently selected craft item and all sub-items and reagents. It will then allow you to create the currently selected item and will create any and all required sub-items!
Features
Non-Intrusive. Can be shown/hidden independently of the default trade skill window.
Works with any trade skill! (eg. Engineering, Blacksmithing, Alchemy, etc.)
Displays the entire dependency tree for the currently selected craft item. This includes sub-items and reagents.
Displays the number available and required number for each item appearing in the dependency tree.
Each item in the tree is color coded to reflect skill gains. (eg. Grey, Green, Yellow, Orange)
Each tree item has a small icon. When hovering over this icon a tooltip will appear displaying the details for that item.
The "Materials" tab will display a summary of all the tools and raw materials required to create the item currently selected in the dependency tree.
There is an edit box for modifying the number to create. When this number is changed, the dependency tree will update the requirements to reflect the new number.
The "Create All" button will create as many of the selected item as possible until there are no more resources in your bags.
The "Create" button will create the number of items specified in the edit box.
Shift-Clicking an item in the TTCraftAddict window will link that item in your chat box.
Alt-Clicking an item in the build tree view will dump that item's build tree, as linked items, to your current chat target. (Works with /w, /g, /s, and chat channels!)
Alt-Clicking an item in the materials view will dump all of the raw materials, as linked items, to your current chat target. (Works with /w, /g, /s, and chat channels!)
Known Bugs
Using the "Create All" button will not change the quantity in the edit box. It will still build as many of the items as possible though.
Instructions
When you open Blizzard's build in trade skill window, a small arrow will appear tothe upper right corner of the window. Clicking this arrow will open the TTCraftAddict window.
Conclusion
Please send me any comments, bugs, or suggestions!
Future Features
- Support for expanding/collpasing subtrees if you don't want to view everything. Thanks to Thenedus for the suggestion.
Version Information
1.12.20003
- Updated .toc file to the latest interface version.
1.11.20000
- Major bug caused by WoW 2.0: Dumping craft info to chat would always dump to /say. This bug is now fixed. It's an important enough feature that it deserved it's own release.
1.10.20000
- Updated for WoW 2.0!
1.09.11200
- Update .toc file to the latest Blizzard interface version (11200).
1.08.11100
- Update .toc file to the latest Blizzard interface version (11100).
- Minor bug fixes.
- Major bug fix to make sure TTCA doesn't create too many of a subitem if you already have some.
- Major bug fix so you don't have to push "Create" so many times. The addon can no longer automatically create all subcomponents because of interface restrictions Blizzard made. The new changes make sure you only have to press "Create" a minimum number of times.
1.07.11000
- Update .toc file to the latest Blizzard interface version (11000).
- Now works with Enchanting!
1.06.10900
- Fixed an annoying bug when making multiple items. The Quanity textbox would not count down as each item was built. Because of this, you could end up making extra subparts.
1.05.10900
- Update .toc file to the latest Blizzard interface version (10900).
- Minor fix to the scrollbar visuals that broke with WoW patch 1.9.
1.04.1800
- Fixed a bug with the Materials tab when single-clicking on the items. Thanks to TS_CTMod for the bug report!
1.03.1800
- Update .toc file to the latest Blizzard interface version (1800).
- Minor changes to account for the new on-demand AddOn loading.
- Minor bug fix for the Materials tab.
1.02.1700
- Update .toc file to the latest Blizzard interface version (1700).
- New feature: Shift-Click an item to link it in chat.
- New feature: Alt-Click an item to dump the tree, as links, to chat.
- Thanks to DunE for the Alt-Click suggestion!
1.01.1600
- Minor localization fixes, primarily for German. Thanks to Thenedus for his suggestions!
Originally posted by twig314159 Active development with new features: No not really.
Kept update to date with bug fixes: Yes.
For the most part, I consider this addon finished. It does everything I want it to and it does it well. Any changes from this point on are going to be bug fixes.
Major feature work is not likely to happen.
That works for me. I do not think its needs new features. It works and does the job exceptionally well. Thanks again.
__________________
The best victory is when the opponent surrenders of its own accord before there are any actual hostilities...It is best to win without fighting.
Sun-tzu
Originally posted by PathMaster This mod is great. I hope its still in development or atleast will be kept up to date.
Active development with new features: No not really.
Kept update to date with bug fixes: Yes.
For the most part, I consider this addon finished. It does everything I want it to and it does it well. Any changes from this point on are going to be bug fixes.
This mod is great. I hope its still in development or atleast will be kept up to date.
__________________
The best victory is when the opponent surrenders of its own accord before there are any actual hostilities...It is best to win without fighting.
Sun-tzu
Originally posted by Jellicle Tried to post under bugs but link takes me to bugs for SpellCast addon!
I currently have both Lootlink & TTCraftAddict (http://www.wowinterface.com/download...fo.php?id=5608 installed). However when my cursor hovers over an enchantment in the TTCraftAddict window I get the error message "Interface\Addons\LootLink\LootLinkTooltips.lua:276:Invalid craft item in SetCraftItem(index, reagent)". I would ideally like to run both addons but the error message is very annoying; any suggestions on how to fix? (Will have to be specific, I'm not a computer whizz I'm afraid)
Thank you!
I'll take a look at this and get it fixed for the next update. Thanks for the bug report!
Tried to post under bugs but link takes me to bugs for SpellCast addon!
I currently have both Lootlink & TTCraftAddict (http://www.wowinterface.com/download...fo.php?id=5608 installed). However when my cursor hovers over an enchantment in the TTCraftAddict window I get the error message "Interface\Addons\LootLink\LootLinkTooltips.lua:276:Invalid craft item in SetCraftItem(index, reagent)". I would ideally like to run both addons but the error message is very annoying; any suggestions on how to fix? (Will have to be specific, I'm not a computer whizz I'm afraid)
Thank you!
You can't use a whisper chat target. The the code below replaces lines 900-910 of TTCraftAddict.lua and fixes the problem.
Code:
local chatType = ChatFrameEditBox:GetAttribute("chatType");
local chatLanguage = ChatFrameEditBox:GetAttribute("chatLanguage");
local chatTarget = nil;
-- Set the chat target.
if (chatType == "WHISPER") then
chatTarget = ChatFrameEditBox:GetAttribute("tellTarget");
elseif (chatType == "CHANNEL") then
chatTarget = ChatFrameEditBox:GetAttribute("channelTarget");
end
Originally posted by Kaleknos I like the set up of the mod, but I tried it out the other night and I get it to link in /s even when I have a chat line open for /g or any other chat line perhaps Im missing something or could you take a look into plz. I am also receiving an error message on mouse over of the itmes in both the BuildTree and Materials that says: Invalid craft item in SetCraft(index,reagent), not sure whats up so thought I would pass it along.
I like the set up of the mod, but I tried it out the other night and I get it to link in /s even when I have a chat line open for /g or any other chat line perhaps Im missing something or could you take a look into plz. I am also receiving an error message on mouse over of the itmes in both the BuildTree and Materials that says: Invalid craft item in SetCraft(index,reagent), not sure whats up so thought I would pass it along.
As you see I got a hit-bang setup for tradeskillwindow. And I dont wanna get any issues, errors so if you dont mind I will not betatest you know... Got too much trouble in the past. :\
Originally posted by KenNashua There's a couble bugs in this addon:
1) It doesn't handle reagents which will get included twice. Example: Engineer's Deadly Blunderbuss which needs 2 Copper Tubes (reagent: 4x Copper Bars) and 4 Copper Bolts (reagent: 4x Copper Bars) as it only checks that each sub-component is buildable without taking into account that a previous sub-component might have exhausted inventory.
2) It doesn't handle sub-items which are already sitting in inventory. Same example above. If I have 1 copper tube in inventory, it checks to see if I have 4x Copper Bars instead of 2x Copper Bars. (same problem as listed below)
If someone is lua-fluent, I'll be happy to work with them to fix this otherwise excellent addon.
I'm currently in the process of fixing these bugs. I should have an update ready sometime this week.
1) It doesn't handle reagents which will get included twice. Example: Engineer's Deadly Blunderbuss which needs 2 Copper Tubes (reagent: 4x Copper Bars) and 4 Copper Bolts (reagent: 4x Copper Bars) as it only checks that each sub-component is buildable without taking into account that a previous sub-component might have exhausted inventory.
2) It doesn't handle sub-items which are already sitting in inventory. Same example above. If I have 1 copper tube in inventory, it checks to see if I have 4x Copper Bars instead of 2x Copper Bars. (same problem as listed below)
If someone is lua-fluent, I'll be happy to work with them to fix this otherwise excellent addon.
Last edited by KenNashua : 06-06-2006 at 11:54 AM.
it's still possible to create e.g. 20 blasting powder in a row
it's now not possible to create 1 blasting powder and 1 mithril frag bomb in a row
so craft adding needs tobe changed to create all the blasting powder in the first step and all the frag bombs in the second step so the process would take only 2 clicks and not 40 (as of now).
edit:
I have found another bug.
I wanted to create ultrasafe transporter - gadgetzan
I had in my inventory:
20 mithril bars, 1 truesilver transformer, 2 truesilver bars, 2 ele earth, 1 ele air, 4 core of earth, 2 globe of water, 4 aquamarine, 1 mithril cylinder
both addict buttons were disabled. the reasons for this was I think that it showed I need 4 truesilver bars, 4 ele earth and 2 ele air, which was wrong since I had 1 truesilver transformer already in inventory.
after creating the second transformer manually the buttons have become enabled.
It does go down the sub-components tree, only that no matter whether I use Create or Create All, it only does 1 production each time, then I have to re-click
(edit)
Found out this is intentional by Blizzard, they prohibit a ton of "automated" actions since 1.10, and advancing a production queue ala TTCraftAddict or GFW_AutoCraft is considered such an action...