Posted on: 09-17-2012 - Updated on: 02-01-2014 - viewed 6400 times
Description:
This Wow macro performs a specific tradeskill by name. In this example, we’re having the macro make a Bold Inferno Ruby with Jewelcrafting. You could make this work for various tradeskills, like Alchemy potions for instance. To customize this, replace the name of the item you want to make as well as the tradeskill you use to make it.
#showtooltip Bold Inferno Ruby /cast Jewelcrafting /run for i=1,GetNumTradeSkills() do if GetTradeSkillInfo(i)=="Bold Inferno Ruby" then CloseTradeSkill() DoTradeSkill(i) break end end