-
Hey all, I've a quick question, is there a way for us to add or change the names of the Section Categories? I'm a BIG crafter in WoW and I'm running into issues with the addon slowing down as I add new tiems to a category. Ideally, I'd like to set up my categories something like... (Section Category) Tailoring The issue I'm having atm, is that there are SO many items under both the Tradeskills & Consumables Categories that it slows my computer down for quite a bit while it processes any changes. I thought perhaps if we could adjust the Section Categories, then the data could be more spread out and not so centralised. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
I've actually spent the evening exploring just this, funny enough. Someone in-game asked me for the same feature, and I got curious about how it would be implemented. Unfortunately, it's not quite as simple as I had hoped. I'm working on building a giant index of itemid -> expansion + profession data. There are some addons that implement this partially, but for whatever reason, they index on the expansion and not the item, which makes it unsuitable for the bag addon. I actually had this working by building an integration with SmexyMats just a few hours ago, but it was very, very slow as SmexyMaps does a loop over every, single, item in it's database, per item lookup. Let me think a bit more on this, but this feedback has been heard loud and clear. Thanks :) |
Beta Was this translation helpful? Give feedback.
-
Alright, I have an extremely fast method of doing this right now, but I'm borrowing someone else's data to do this. Below you'll see how I have things sorted into Dragonflight (but no sub category yet). This should be relatively easy to do, but the tough part here is getting the data in place. More soon :) |
Beta Was this translation helpful? Give feedback.
-
So, it turns out that for Dragonflight, Blizzard added an API that gives you a lot more information on items, specifically on reagent data! Check it out: I did all of this using built in Blizzard API's, and it's fast! I need to make a few changes/options to the filter plugin, but I'll likely push this sometime this week :) |
Beta Was this translation helpful? Give feedback.
-
One more image -- reagent bank looking much, much better! |
Beta Was this translation helpful? Give feedback.
I've actually spent the evening exploring just this, funny enough. Someone in-game asked me for the same feature, and I got curious about how it would be implemented. Unfortunately, it's not quite as simple as I had hoped. I'm working on building a giant index of itemid -> expansion + profession data. There are some addons that implement this partially, but for whatever reason, they index on the expansion and not the item, which makes it unsuitable for the bag addon.
I actually had this working by building an integration with SmexyMats just a few hours ago, but it was very, very slow as SmexyMaps does a loop over every, single, item in it's database, per item lookup. Let me think a bit mo…