This project is abandoned and its default file will likely not work with the most recent version of World of Warcraft. Whether this project is out of date or its author has marked it as abandoned, this project is no longer maintained.
GnomeWorks TradeSkill Frame -
a complete replacement for the blizzard trade skill frame.
I now have KTQ working with this and lsw. (at least for gems, not enchanting hmm) All that is missing is a shopping list of items missing and buy options from vendors of the items in queue.
@gwydionver: yeah, i can probably come up with a method to do what you want. likely, the end result will be a gw-generated macro that will do what needs to be done next.
Kevmar's back and mentioned that he's going to fix the mod!!
Maybe you should contact him and offer up what you were able to figure out - might get us all back into full production mode if you work together.
I want to create a macro to make processing the queue easier since I'm on a laptop and the trackpad makes the mouse jump all over, preventing me from simply pushing a button without looking at the computer. I'm allowed to run wow at work, but not focus on it too long. But I can multi task by queuing up a bunch of glyphs and reaching over to click a button blindly.
For Skillet there was a command something like /click SkilletProcessQueue I set in a macro that let me do this.
I've looked through the gnomeworks lua files and cant find anything that looks similar. It looks like you're using a different scheme this time.
TL:DR
Is it possible to make a keyboard macro to process the queue like we could for Skillet?
Hi Lilsparky,
I really love GnomeWorks! It is one of the best looking addons I've ever seen. Thanks for all the hard work of making it!
One issue with GnomeWorks in 4.0.1 is with inscription, it expects all the glyphs still only use one ink so the queue gets kind of messed up. Looking further down the road it would be great if there was support for the Auction Profit Master (QA3) tradeskill queue.
i'm working on a new rev. the bad news is i'm kinda busy with real life. the good news is that i find 4.0 to kinda suck, so i'm not gonna bother playing it too much so instead i'll spend that time coding.
1) I can not get the LSW columns to show up even though LSW is enabled and OOD addons is on. Is there a /LSW way to see if it is alive? What is the trick here?
2) Is there a way to purchase reagents from teh NPC for the glyphs in my queue.
I tried using glypher and cant seem to even add anything with it. Also with gnomeworks i can see the queue list but dont see a shopping list / missing reagents that i need to buy similar to skillet.
So far this has been working in patch 4.0.1, kinda. It will accept the AddToSkill queue from Auctioneer's Glypher, which is great.
It has a problem with anything containing an apostrophe in it, however. It hangs on the glyphs Master's Call, Templar's Verdict and Tiger's Fury. It doesn't throw an error, it just hangs until I delete that item from the queue.
That was incorrect. With the Glyph of Templar's Verdict in the queue, the error message is:
Message: [string "for i=1,1000 do if GetTradeSkillInfo(i)=='Glyph of Templar's Ve..."] line 1:
'then' expected near 's'
i was able to see the amount of glyphs my Alts had _including_ the ones they had listed on the AH.
any chance you could add this feature?
otherwise great addon. good to see you have evolved from making added features to existing addons to making your own.
eidt : this evening i've been trying to hack KevToolQueue to add support for GnomeWorks. so far unsuccesfully.
my glyph industry was based upon the combination of KTQ + Altoholic + Skillet + LilSparkysWorkshop for manufacturing and QA3 for sales.
so right now i'm FUBAR. lol.
I use a bank with a large guild bank to store materials, and GW doesn't show the contents of the guild bank in the list for items in inventory, this would be very useful. I still have to resort to mousing over the glyph icon to see how many I actually have via Altoholic/ArkInventory.
Gnomeworks doesn't work with Overachiever (while skillet did). Particularly, you can no longer see what food items you need to cook to meet achievements. It would be helpful if that was fixed.
The below comment by chmee is accurate and I believe I've narrowed it down to an error in apostrophe handling. I just went through making a batch of glyphs and the error occurred whenever trying to make Lion's Ink or Hunter's Ink as prerequisites. Also, queuing a recipe with an apostrophe in it causes an error as well. I circumvented the error by clicking on the recipe name in the queue list and then clicking the create button.
@gwydionver
I've found links on curse page and the authors website that have pretty much working versions.
@tlai Where are you hosting your version of KTQ?
If you'd rather not make it public, PM me and I'll test it out for you!
@lilsparky: Thank you very much - looking forward to it! There's no command line I can use in the meantime?
I now have KTQ working with this and lsw. (at least for gems, not enchanting hmm) All that is missing is a shopping list of items missing and buy options from vendors of the items in queue.
@gwydionver: yeah, i can probably come up with a method to do what you want. likely, the end result will be a gw-generated macro that will do what needs to be done next.
@owlhooter
Kevmar's back and mentioned that he's going to fix the mod!! Maybe you should contact him and offer up what you were able to figure out - might get us all back into full production mode if you work together.
http://www.ithinkincode.com/warcraft/
I want to create a macro to make processing the queue easier since I'm on a laptop and the trackpad makes the mouse jump all over, preventing me from simply pushing a button without looking at the computer. I'm allowed to run wow at work, but not focus on it too long. But I can multi task by queuing up a bunch of glyphs and reaching over to click a button blindly.
For Skillet there was a command something like /click SkilletProcessQueue I set in a macro that let me do this. I've looked through the gnomeworks lua files and cant find anything that looks similar. It looks like you're using a different scheme this time.
TL:DR Is it possible to make a keyboard macro to process the queue like we could for Skillet?
I was able to fix the issue with it not processing the Queue for items with ' 's in them. in the queue.lua file I modified
local castText = "/script for i=1,1000 do if GetTradeSkillInfo(i)=='"..spellName.."' then DoTradeSkill(i,"..entry.count..") end end"
To
local castText = '/script for i=1,1000 do if GetTradeSkillInfo(i)=="'..spellName..'" then DoTradeSkill(i,'..entry.count..') end end'
All it is is changing where the apostrophe's are in the code so it doesn't kill it out when it takes it into the game.
I also rewrote parts of KTQ last night to work with GnomeWorks, but as it is the first addon work I've done, I'm not sure where to put it :)
EDIT: I knew the quotes would get me in the end, updated above and working for me.
Hi Lilsparky, I really love GnomeWorks! It is one of the best looking addons I've ever seen. Thanks for all the hard work of making it!
One issue with GnomeWorks in 4.0.1 is with inscription, it expects all the glyphs still only use one ink so the queue gets kind of messed up. Looking further down the road it would be great if there was support for the Auction Profit Master (QA3) tradeskill queue.
Thanks!
i'm working on a new rev. the bad news is i'm kinda busy with real life. the good news is that i find 4.0 to kinda suck, so i'm not gonna bother playing it too much so instead i'll spend that time coding.
Two questions:
1) I can not get the LSW columns to show up even though LSW is enabled and OOD addons is on. Is there a /LSW way to see if it is alive? What is the trick here?
2) Is there a way to purchase reagents from teh NPC for the glyphs in my queue.
TIA
I tried using glypher and cant seem to even add anything with it. Also with gnomeworks i can see the queue list but dont see a shopping list / missing reagents that i need to buy similar to skillet.
So far this has been working in patch 4.0.1, kinda. It will accept the AddToSkill queue from Auctioneer's Glypher, which is great.
It has a problem with anything containing an apostrophe in it, however. It hangs on the glyphs Master's Call, Templar's Verdict and Tiger's Fury. It doesn't throw an error, it just hangs until I delete that item from the queue.
That was incorrect. With the Glyph of Templar's Verdict in the queue, the error message is: Message: [string "for i=1,1000 do if GetTradeSkillInfo(i)=='Glyph of Templar's Ve..."] line 1: 'then' expected near 's'
Does this work with the new patch? Currently looking for a working skillet/this with KTQ support if it still works...
with a combinations of addons
skillet + lilsparky's workshop + altoholic
i was able to see the amount of glyphs my Alts had _including_ the ones they had listed on the AH.
any chance you could add this feature?
otherwise great addon. good to see you have evolved from making added features to existing addons to making your own.
eidt : this evening i've been trying to hack KevToolQueue to add support for GnomeWorks. so far unsuccesfully. my glyph industry was based upon the combination of KTQ + Altoholic + Skillet + LilSparkysWorkshop for manufacturing and QA3 for sales. so right now i'm FUBAR. lol.
I use a bank with a large guild bank to store materials, and GW doesn't show the contents of the guild bank in the list for items in inventory, this would be very useful. I still have to resort to mousing over the glyph icon to see how many I actually have via Altoholic/ArkInventory.
Gnomeworks never gets mats for me out of the bank anymore. Crafted or otherwise.
concerning glyphs: I can see the number of available materials BUT when I create some glyphs, they do not appear in the "inventory" column
Gnomeworks doesn't work with Overachiever (while skillet did). Particularly, you can no longer see what food items you need to cook to meet achievements. It would be helpful if that was fixed.
The below comment by chmee is accurate and I believe I've narrowed it down to an error in apostrophe handling. I just went through making a batch of glyphs and the error occurred whenever trying to make Lion's Ink or Hunter's Ink as prerequisites. Also, queuing a recipe with an apostrophe in it causes an error as well. I circumvented the error by clicking on the recipe name in the queue list and then clicking the create button.
Got an error on attempt to "Process Hunter's Ink" as a prerequisite for another inscription recipe. Posted a ticket (#92).
Also, I seem to have to manually retrieve ingredients (in this case the pigment for Hunter's Ink) from the bank.