Download
(1MB)
Download
Updated: 10-27-19 12:17 PM
Pictures
File Info
Updated:10-27-19 12:17 PM
Created:unknown
Downloads:34,112
Favorites:272
MD5:
Categories:TradeSkill Mods, Auction House & Vendors, Bags, Bank, Inventory, Data Broker, ToolTip

TradeSkillInfo  Popular! (More than 5000 hits)

Version: v2.4.4
by: Ethan Centaurai, wmrojer

TradeskillInfo is an addon that gives you all the information that you need about tradeskills - including the ones that your character cannot craft.

It can add the following information to the tooltip of an item:

  • What tradeskills it is used in, and how many different recipes for that tradeskill it is used in.
  • Show you where the item comes from. Vendor, dropped, disenchanted or crafted.
  • Show who of your chars can use the item.

It can add the following information to the tooltip for recipes and crafted items:
  • If any of your chars knows it already.
  • If any of your chars can learn it now.
  • If any of your chars will be able to learn it later.
  • Where it comes from. Vendor bought, quested, dropped or crafted.

In the tradeskill craft window it will show:
  • At what skill levels the recipe will shift to a different difficulty level. 120/80/60/40 would mean it's learnable at 40, it will be yellow at 60, green at 80 and grey at 120.
  • The cost of the combine (auctioneer or vendor prices), how much the result sells for to a vendor and the profit/loss.

TradeskillInfo also has it's own UI. It is opened with "/tsi menu" or by binding a key to it in the keybindings menu.

QuickSearch an item in the inventory will open the UI and show all recipes that use that item. QuickSearch key-mouse combination is configurable. Defaults to Shift-RightClick.

RightClicking an reagent icon in the TradeskillInfoUI with the AuctionFrame open will do a search for that reagent in the auction house.

Shift-Click on the recipe name in the list (to the left) with the chatbox open will paste the complete recipe there. (To tell your guildies whats needed to make that uber item)

In the UI you can browse all tradeskills in the game.
  • Filter what tradeskills to show
  • Filter what recipes to show
    • Player known
    • Player learnable
    • Player will be able to learn
    • Alt known
    • Alt learnable
    • Alt will be able to learn
    • Unavailable
  • Freetext search on recipe name and reagent names.

For every recipe it will show:
  • If the it is learned from a recipe, it will show the source of the recipe. Dropped, Vendor bought, quested or faction vendor.
  • What skill level is required, and specialization.
  • Who of your chars knows the recipe.
  • Who of your chars can learn the recipe.
  • Who of your chars will be able to learn the recipe.
  • At what skill levels the recipe will shift to a different difficulty level. 40/60/80/120 would mean it's learnable at 40, it will be yellow at 60, green at 80 and grey at 120.
  • The cost of the combine (both auctioneer and vendor prices), how much the result sells for to a vendor and the profit/loss.

Recipe names are color coded.
  • White: Player knows
  • Light Green: Player can learn
  • Yellow: Player will be able to learn
  • Grey: Alt knows
  • Dark Green: Alt can learn
  • Orange: Alt will be able to learn
  • Red: Unavailable to all your chars

For items not in the local cache of the WoW client, the icon is "?". Clicking on that icon will try and lookup the item.

It also has a graphical configuration screen that is opend with /tsi config or by binding a key to it in the Keybindings menu.

TradeSkillInfo
v2.4.4 (2019-10-27)
Full Changelog Previous releases
  • Ran the dataminer.
  • Updated LibExtraTip to latest version.
  • Update README.md
  • Bump Interface number to 80205.
  • Prevent the addon from erroring on Classic servers.
    TradeSkillInfo is not compatible with WoW Classic. Please do not use this addon on Classic servers.
  • Update issue templates
  • Add Travis-CI packaging support
  • Ran the dataminer.
  • Set theme jekyll-theme-leap-day
  • Set theme jekyll-theme-slate
  • Ran the dataminer.
Optional Files (0)


Post A Reply Comment Options
Unread 07-21-22, 04:43 PM  
Lividias
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Re: Re: 9.1.5 Attempting to hook a non existing target

Originally Posted by BloodyFess
Originally Posted by MatBrown
With 9.1.5 I started getting an error when opening the Guild Bank.
It comes from line 260, which is:
Code:
self:SecureHook("GuildBankFrame_Update")
Turns out, Blizzard has rewritten the Guild Bank UI, and that event no longer exists.
Here's my trouble, I can't figure out what to replace that line with.
For now I have commented it out, which prevents the error, but also loses whatever functionality that used to trigger. (I have to admit, I am unsure exactly what that was.)
What should I replace that with? What is the new version of this?
The same... Can anyone fix this?
I did a bit of comparing with another Addoon that fixed the same problem and worked out you need to change it to:
elseif addon == "Blizzard_GuildBankUI" then
hooksecurefunc(GuildBankFrame, "Update", function(...) self:GuildBankFrame_Update(...) end)

You'll also need to add a couple of lines at line 1813:
local MAX_GUILDBANK_SLOTS_PER_TAB = 98;
local NUM_SLOTS_PER_GUILDBANK_GROUP = 14;
Report comment to moderator  
Reply With Quote
Unread 11-25-21, 11:33 AM  
BloodyFess
A Kobold Labourer

Forum posts: 1
File comments: 9
Uploads: 0
Re: 9.1.5 Attempting to hook a non existing target

Originally Posted by MatBrown
With 9.1.5 I started getting an error when opening the Guild Bank.
It comes from line 260, which is:
Code:
self:SecureHook("GuildBankFrame_Update")
Turns out, Blizzard has rewritten the Guild Bank UI, and that event no longer exists.
Here's my trouble, I can't figure out what to replace that line with.
For now I have commented it out, which prevents the error, but also loses whatever functionality that used to trigger. (I have to admit, I am unsure exactly what that was.)
What should I replace that with? What is the new version of this?
The same... Can anyone fix this?
Report comment to moderator  
Reply With Quote
Unread 11-04-21, 12:37 AM  
MatBrown
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
9.1.5 Attempting to hook a non existing target

With 9.1.5 I started getting an error when opening the Guild Bank.
It comes from line 260, which is:
Code:
self:SecureHook("GuildBankFrame_Update")
Turns out, Blizzard has rewritten the Guild Bank UI, and that event no longer exists.
Here's my trouble, I can't figure out what to replace that line with.
For now I have commented it out, which prevents the error, but also loses whatever functionality that used to trigger. (I have to admit, I am unsure exactly what that was.)
What should I replace that with? What is the new version of this?
Report comment to moderator  
Reply With Quote
Unread 10-04-19, 09:15 PM  
pär
A Murloc Raider
 
pär's Avatar

Forum posts: 6
File comments: 87
Uploads: 0
There does not seem to be a Classic version of this, or any addon that tells me in-game what a random white trade goods item is used for by which professions.

Would love to see this as it'd cut down on alt-tabbing and searching wowhead or similar for information.
Report comment to moderator  
Reply With Quote
Unread 09-26-16, 02:10 AM  
Aisenfaire
A Murloc Raider

Forum posts: 6
File comments: 394
Uploads: 0
Hi!

The Legion enchanting recipes don't seem to be showing up? When I search for "word", only blacksmithing sword plans show up. (Other Legion recipes I've searched for show up nicely.)
Report comment to moderator  
Reply With Quote
Unread 12-31-15, 05:36 AM  
Thrassivoulos
A Kobold Labourer

Forum posts: 0
File comments: 17
Uploads: 0
Thanx. I will post this at skinner's page then
Report comment to moderator  
Reply With Quote
Unread 12-31-15, 04:58 AM  
Ravendwyr
A Flamescale Wyrmkin
 
Ravendwyr's Avatar
AddOn Author - Click to view AddOns

Forum posts: 139
File comments: 156
Uploads: 13
Re: Lua error

Originally Posted by Thrassivoulos
Is it Tradeskill's fault ?



Date: 2015-12-31 12:22:11
ID: 1
Error occured in: Global
Count: 1
Message: ...dOns\TradeSkillInfo\Libs\AceHook-3.0\AceHook-3.0.lua line 180:
Attempting to rehook already active hook OnValueChanged.
Debug:
[C]: ?
...dOns\TradeSkillInfo\Libs\AceHook-3.0\AceHook-3.0.lua:180:
...dOns\TradeSkillInfo\Libs\AceHook-3.0\AceHook-3.0.lua:118
...dOns\TradeSkillInfo\Libs\AceHook-3.0\AceHook-3.0.lua:411: SecureHookScript()
Skinner\SkinMe\MasterPlan.lua:111:
Skinner\SkinMe\MasterPlan.lua:5
(tail call): ?
[C]: xpcall()
Skinner\UtilFuncs.lua:180:
Skinner\UtilFuncs.lua:174
(tail call): ?
Skinner\AddonFrames.lua:326: func()
...ns\TradeSkillInfo\Libs\AceTimer-3.0\AceTimer-3.0.lua:55:
...ns\TradeSkillInfo\Libs\AceTimer-3.0\AceTimer-3.0.lua:48
No, I believe this an error from the Skinner addon. TradeSkillInfo is mentioned in the first message because it is the first addon to run (or has the most recent version of) the AceHook-3.0 embedded library.
__________________
Twitter | GitHub
Report comment to moderator  
Reply With Quote
Unread 12-31-15, 04:25 AM  
Thrassivoulos
A Kobold Labourer

Forum posts: 0
File comments: 17
Uploads: 0
Lua error

Is it Tradeskill's fault ?



Date: 2015-12-31 12:22:11
ID: 1
Error occured in: Global
Count: 1
Message: ...dOns\TradeSkillInfo\Libs\AceHook-3.0\AceHook-3.0.lua line 180:
Attempting to rehook already active hook OnValueChanged.
Debug:
[C]: ?
...dOns\TradeSkillInfo\Libs\AceHook-3.0\AceHook-3.0.lua:180:
...dOns\TradeSkillInfo\Libs\AceHook-3.0\AceHook-3.0.lua:118
...dOns\TradeSkillInfo\Libs\AceHook-3.0\AceHook-3.0.lua:411: SecureHookScript()
Skinner\SkinMe\MasterPlan.lua:111:
Skinner\SkinMe\MasterPlan.lua:5
(tail call): ?
[C]: xpcall()
Skinner\UtilFuncs.lua:180:
Skinner\UtilFuncs.lua:174
(tail call): ?
Skinner\AddonFrames.lua:326: func()
...ns\TradeSkillInfo\Libs\AceTimer-3.0\AceTimer-3.0.lua:55:
...ns\TradeSkillInfo\Libs\AceTimer-3.0\AceTimer-3.0.lua:48
Locals:
None
AddOns:
Swatter, v5.21f.5566 (SanctimoniousSwamprat)
ChayseLib, v1.0
ChayseTimelessChests, v0.1
NPCScan, v6.2.3.6
NPCScanOverlay, v6.2.3.1
NPCScanOverlayBroker, v1.2.6
ABiggerBag, v
AchievementsReminder, v
AckisRecipeList, v6.2.3.1
AckisRecipeListQuickScan, v6.2.0.1
AdiButtonAuras, v1.9.6-7-gbfdc1dd
Altoholic, vr165
Archy, v6.2.3.2
Armory, vv12.7.1
ArmoryGuildBank, vv12.7.1
AskMrRobot, v31
Atlas, v1.32.00
AtlasArena, v1.5.06
AtlasBattlegrounds, v1.32.00
AtlasBurningCrusade, v1.32.00
AtlasCataclysm, v1.32.00
AtlasClassicWoW, v1.32.00
AtlasDungeonLocs, v1.32.00
AtlasMistsofPandaria, v1.32.00
AtlasOutdoorRaids, v1.32.00
AtlasScenarios, v1.32.00
AtlasTransportation, v1.32.00
AtlasWorldEvents, v3.13
AtlasWorldofDraenor, v1.32.00
AtlasWrathoftheLichKing, v1.32.00
AtlasLoot, vv8.00.00beta7
AtlasMajorCitiesEnhanced, vv1.07
AtlasQuest, v4.9.5
AucAdvanced, v5.21f.5566 (SanctimoniousSwamprat)
AucFilterBasic, v5.21f.5566 (SanctimoniousSwamprat)
AucFilterOutlier, v5.21f.5566.5459(/embedded)
AucMatchUndercut, v5.21f.5566.5507(/embedded)
AucStatHistogram, v5.21f.5566 (SanctimoniousSwamprat)
AucStatiLevel, v5.21f.5566 (SanctimoniousSwamprat)
AucStatPurchased, v5.21f.5566 (SanctimoniousSwamprat)
AucStatSales, v5.21f.5566.5476(/embedded)
AucStatSimple, v5.21f.5566 (SanctimoniousSwamprat)
AucStatStdDev, v5.21f.5566 (SanctimoniousSwamprat)
AucStatWOWEcon, v5.21f.5566.5323(/embedded)
AucUtilAHWindowControl, v5.21f.5566.5347(/embedded)
AucUtilAppraiser, v5.21f.5566.5545(/embedded)
AucUtilAskPrice, v5.21f.5566.5447(/embedded)
AucUtilAutoMagic, v5.21f.5566.5537(/embedded)
AucUtilCompactUI, v5.21f.5566.5550(/embedded)
AucUtilEasyBuyout, v5.21f.5566.5507(/embedded)
AucUtilFixAH, v5.21f.5566 (SanctimoniousSwamprat)
AucUtilItemSuggest, v5.21f.5566.5417(/embedded)
AucUtilPriceLevel, v5.21f.5566.5535(/embedded)
AucUtilScanButton, v5.21f.5566.5403(/embedded)
AucUtilScanFinish, v5.21f.5566.5515(/embedded)
AucUtilScanProgress, v5.21f.5566.4979(/embedded)
AucUtilScanStart, v5.21f.5566.5347(/embedded)
AucUtilSearchUI, v5.21f.5566.5556(/embedded)
AucUtilSimpleAuction, v5.21f.5566.5531(/embedded)
AucUtilVendMarkup, v5.21f.5566.4828(/embedded)
Babylonian, v5.1.DEV.332(/embedded)
BadBoy, v12.886
BadBoyCCleaner, v
BadBoyGuilded, v
BadBoyHistory, v
BadBoyLevels, v
BadPet, vv1.0.3
BarovHelper, v
BattlePetDailyTamer, v1.5.2
BeanCounter, v5.21f.5566 (SanctimoniousSwamprat)
BetterBattlePetTooltip, v6.2.2.27
BittensSpellFlashDruid, v60100.201503092107
BittensSpellFlashLibrary, v60100.201503092107
bosseskilled, v1.4.2
BrokerGarrison, v1.8.3
BrokerLFG, v6.1.0.3
BrokerProfessionsMenu, v
BrokerSmartBuff, v6.0a
Capping, v6.2.01
ClassicQuestLog, v1.0.6
Clique, vv60200-1.0.0
Collectinator, v6.2.3.1
Configator, v5.1.DEV.382(/embedded)
DataStore, vr55
DataStoreAchievements, vr41
DataStoreAgenda, vr22
DataStoreAuctions, v6.0.001
DataStoreCharacters, vr35
DataStoreContainers, vr51
DataStoreCrafts, vr68
DataStoreCurrencies, vr30
DataStoreGarrisons, vr14
DataStoreInventory, vr43
DataStoreMails, vr43
DataStorePets, vr38
DataStoreQuests, vr35
DataStoreReputations, vr36
DataStoreSpells, vr26
DataStoreStats, vr25
DataStoreTalents, vr51
DBMArchaeology, v
DBMCore, v
DBMDefaultSkin, v
DBMGarrisonInvasions, v
DBMLDB, v
DBMSpellTimers, v
DBMStatusBarTimers, v
DBMVictorySound, v2.0
DBMVPKiwi, v@project-version@
DBMVPVEM, v6.2.3
DebugLib, v5.1.DEV.337(/embedded)
Decursive, v2.7.4.4
Dominos, v6.2.8
DominosActionSets, v
DominosCast, v
DominosEncounter, v
DominosRoll, v
DominosXP, v
DruidFriend, v6.20
Elementarist, v3.5.3
Enchantrix, v5.21f.5566 (SanctimoniousSwamprat)
EnchantrixBarker, v5.21f.5566 (SanctimoniousSwamprat)
FindersAndRichesHelper, v1.3
FlightMapEnhanced, v1.7.7
FollowerLocationInfo, v0.9-beta3
FollowerLocationInfoData, v0.2-beta
ForteCasting, v
ForteClass, v
ForteCooldown, v
ForteCore, v1.998.6
ForteSummon, v
ForteTalent, v
ForteTimer, v
Frodo, v1.1
GFWHoverTips, v6.0
Grail, v074
GrailAchievements, v011
GrailReputations, v007
GTFO, v4.37.6
HaloPro, v(v3.6.3.0)
HandyNotes, vv1.4.6
HandyNotesDraenorTreasures, v1.16
HandyNotesFieldPhotographer, v6.2.0.1
HandyNotesHigherLearning, v6.2.0.4
HandyNotesWellRead, v6.1.0.4
Informant, v5.21f.5566 (SanctimoniousSwamprat)
KnowYourLootSpec, v60000.1.0
LFRAdvanced, v6.2.2.20444
LibExtraTip, v5.12.DEV.390(/embedded)
Lifebloomer, v3.4.1
Livestock, v2.4.1
LorewalkersHelper, v1.1
Masque, v6.2.0
MasqueKenzo, v2.0.0
MasqueTrinity, vCentauri-5
MasterPlan, v0.80
MasterPlanA, vA
MogIt, v3.5.6
MogItAccessories, v
MoveAnything, v15.2.9
OmniCC, v6.2.1
OPie, vTomato 5
Outfitter, v5.10b10
Overachiever, v0.84
OverachieverTrade, v0.84
Pawn, v1.9.20
PetAttack, v1.0.15
PetJournalEnhanced, v2.9.16
PetTracker, v6.2.5
PetTrackerBreeds, v
PetTrackerBroker, v
PetTrackerConfig, v
PetTrackerJournal, v
PetTrackerSwitcher, v
PetTrackerUpgrades, v
Prat30, v3.6.4
Prat30Libraries, v
Quartz, v3.2.5-3-g3856046
QuartzProcs, v3.49
Quester, v6.2.0.1
RaidAchieveFilter, v1.8.3
RaidAchievement, v
RaidAchievementOldModules, v
RareCoordinator, v
Rarity, v1.0
RarityOptions, v
RecipeHelper, vRH-v2.8.11
Recount, vv6.2.3f release
Rematch, v4.1.4
RoleCall, v1.10.4
SavedInstances, vr478
SexyMap, v2.4.26
ShieldTracker, v6.2.0-2-g53cdc7b
SimpleILevel, v3.2.19
SimpleILevelAlts, vv2.0.4
SimpleILevelGroup, v3.2.19
SimpleILevelResilience, v3.2.19
SimpleILevelSocial, v3.2.19
Skillet, v2.88
Skinner, vb6.20726.2
SlideBar, v5.21f.5566 (SanctimoniousSwamprat)
SmartBuff, v6.0c With Fixes
Spade, v1.10.1
SpellFlash, v6.24.1
SpellFlashArgentTournamentMounts, v1.20.6
SpellFlashItems, v1.0.6
SpellFlashCore, v2.1.1
SpellStealer, v1.85
Stubby, v5.21f.5566 (SanctimoniousSwamprat)
TidyPlates, v6.17.1
TidyPlatesGraphite, v
TidyPlatesGrey, v
TidyPlatesNeon, v
TidyPlatesQuatre, v
TidyPlatesHub, v
TidyPlatesWidgets, v
TipHelper, v5.12.DEV.389(/embedded)
TipTac, v15.12.07
TipTacItemRef, v15.12.07
TipTacMogIt, v1.0
TipTacTalents, v15.07.02
Titan, v5.6.19.60200
TitanBag, v5.6.19.60200
TitanClock, v5.6.19.60200
TitanEmote, v1.0.20.60200
TitanGold, v5.6.19.60200
TitanGuild, v6.0.3.1
TitanLocation, v5.6.19.60200
TitanLootType, v5.6.19.60200
TitanMail, v6.02
TitanPerformance, v5.6.19.60200
TitanQuests, v3.0.12
TitanRecount, v4.0.0
TitanRepair, v5.6.19.60200
TitanReputation, v3.8.6
TitanSpec, v4.1
TitanVolume, v5.6.19.60200
TitanXP, v5.6.19.60200
TomTom, vv60200-2.1.0-917c73d
TooltipItemIcon, v1.69
TooltipItemInfo, v
TotemTimers, v11.1.15
ToyPlus, v1.4.1
TradeSkillInfo, vv2.3.7
tullaRange, v6.2.0
Wholly, v053
Wikky, v2.0
WorldBossStatus, v4.7.1
xanAutoMail, v2.1
XPerlFacade, v4.0.0
ZoneAchievementTracker, v6.1.0.15
ZPerl, vr987
ZPerlArcaneBar, v
ZPerlParty, v
ZPerlPartyPet, v
ZPerlPlayer, v
ZPerlPlayerBuffs, v
ZPerlPlayerPet, v
ZPerlRaidAdmin, v
ZPerlRaidFrames, v
ZPerlRaidHelper, v
ZPerlRaidMonitor, v
ZPerlRaidPets, v
ZPerlTarget, v
ZPerlTargetTarget, v
ZyrrMission, v1.23
BlizRuntimeLib_enUS v6.2.3.60200 <none>
(ck=1ccf)
Report comment to moderator  
Reply With Quote
Unread 08-20-15, 09:16 AM  
harl
A Murloc Raider
 
harl's Avatar
AddOn Author - Click to view AddOns

Forum posts: 4
File comments: 84
Uploads: 2
It seems to me that TSI doesn't always clear the information added to TradeSkillDescription (I think that's its name)..
Would love to know how to fix this:
http://s6.postimg.org/81me6xvq9/trad...pping_text.png
Report comment to moderator  
Reply With Quote
Unread 12-12-14, 12:26 PM  
Ravendwyr
A Flamescale Wyrmkin
 
Ravendwyr's Avatar
AddOn Author - Click to view AddOns

Forum posts: 139
File comments: 156
Uploads: 13
v2.3.4 has been released.

This version fixes an error when speaking to Ahm in the Enchanter's Study and has a few updated recipes.
I can also colour recipes sold at vendors depending on whether you know the recipe or not!

Enjoy!
__________________
Twitter | GitHub
Report comment to moderator  
Reply With Quote
Unread 11-22-14, 05:12 PM  
Ravendwyr
A Flamescale Wyrmkin
 
Ravendwyr's Avatar
AddOn Author - Click to view AddOns

Forum posts: 139
File comments: 156
Uploads: 13
v2.3.2 has been uploaded and is currently pending moderator approval. This version adds in Maelynn's requested changes and has a few updated recipes.

Originally Posted by Maelynn
I'm happy it's possible to implement and (by the sound of it) something that's not really difficult to do. ^_^
Aye, me too! Thankfully it wasn't hard at all.
If there are any problems let me know.
__________________
Twitter | GitHub
Report comment to moderator  
Reply With Quote
Unread 11-22-14, 08:21 AM  
Maelynn
A Fallenroot Satyr
 
Maelynn's Avatar

Forum posts: 23
File comments: 187
Uploads: 0
Originally Posted by Ethan Centaurai
I've changed it in my repository so that it obeys the same settings as every other item. The recipe differentiation also appears to be going well. Both of these changes should be added to v2.7.2.
Ah awesome, I'll patiently await the next release then. Thanks for looking into the error and adding my request; I'm happy it's possible to implement and (by the sound of it) something that's not really difficult to do. ^_^

Originally Posted by Ethan Centaurai
I also recommend having a look at Kemayo's Does My Alt Know That addon. It is not on WoWinterface, but it simply provides the tooltip info you are after and nothing else.
Thanks for the suggestion, I did take a look. However, it seems as though this addon will tell you if an alt already knows the recipe - which is exactly what I want hidden, haha. But no matter, because I can just stick with yours now.
__________________
Just remember... if the world didn't suck, we'd all fall off.
Report comment to moderator  
Reply With Quote
Unread 11-21-14, 10:11 AM  
Ravendwyr
A Flamescale Wyrmkin
 
Ravendwyr's Avatar
AddOn Author - Click to view AddOns

Forum posts: 139
File comments: 156
Uploads: 13
Originally Posted by Maelynn
For some reason, I'm suddenly seeing the 'known by <name>' regardless of my settings (might've started with WoD launch, but not sure).

I've uninstalled and reinstalled the addon, deleted the relevant files in the WTF folder, but it still refuses to acknowledge my wish of not seeing who of my alts have already learnt the recipes I'm looking at. What could be causing this?
Chances are I've broken something. I shall investigate.

Originally Posted by Maelynn
Also, I'd really like to repeat my request to differentiate between items and recipes. I only wish to use this addon to inform me which recipes are learnable for my alts (so I won't end up getting duplicates every time I check the AH on my banker, or the gb on my main), I really don't need to see who of my alts can use an Alchemical Catalyst or who can craft the bandages I'm using.
I'll admit, I forgot about this. I'll have a look and see if it is something I can do.

I also recommend having a look at Kemayo's Does My Alt Know That addon. It is not on WoWinterface, but it simply provides the tooltip info you are after and nothing else.

EDIT: It looks like the "known by <name>" thing has been like that for a while. I've changed it in my repository so that it obeys the same settings as every other item. The recipe differentiation also appears to be going well. Both of these changes should be added to v2.3.2.
__________________
Twitter | GitHub
Last edited by Ravendwyr : 11-22-14 at 05:07 PM.
Report comment to moderator  
Reply With Quote
Unread 11-21-14, 05:54 AM  
Maelynn
A Fallenroot Satyr
 
Maelynn's Avatar

Forum posts: 23
File comments: 187
Uploads: 0
For some reason, I'm suddenly seeing the 'known by <name>' regardless of my settings (might've started with WoD launch, but not sure).

I've uninstalled and reinstalled the addon, deleted the relevant files in the WTF folder, but it still refuses to acknowledge my wish of not seeing who of my alts have already learnt the recipes I'm looking at. What could be causing this?

Also, I'd really like to repeat my request to differentiate between items and recipes. I only wish to use this addon to inform me which recipes are learnable for my alts (so I won't end up getting duplicates every time I check the AH on my banker, or the gb on my main), I really don't need to see who of my alts can use an Alchemical Catalyst or who can craft the bandages I'm using.
__________________
Just remember... if the world didn't suck, we'd all fall off.
Last edited by Maelynn : 11-21-14 at 05:54 AM.
Report comment to moderator  
Reply With Quote
Unread 11-19-14, 12:26 PM  
Ravendwyr
A Flamescale Wyrmkin
 
Ravendwyr's Avatar
AddOn Author - Click to view AddOns

Forum posts: 139
File comments: 156
Uploads: 13
v2.3.1 fixes an error that occurs when searching through your professions returns no results, and also has a few updated recipes.

Enjoy!
__________________
Twitter | GitHub
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: