I've been using the tip I saw on here a while back about buying Borean Leather, then creating Nerubian Legguards and vendoring for 5g. I've searched for the post to link to it, but can't seem to find it, but if anyone links it, I'll edit this to point you in that direction.
Anyway, I've created a couple of macros that have this down to a fine art nowadays, and thought I'd share them.
1 Click to create all Nerubian Legguards:
Code:
#showtooltip
/cast Leatherworking
/run for i=1,GetNumTradeSkills() do if GetTradeSkillInfo(i)=="Nerubian Legguards" then CloseTradeSkill() DoTradeSkill(i, floor(GetItemCount("Borean Leather")/8)) break end end
1 Click to sell all to vendor:
Code:
/run for bag=0,4,1 do for slot=1,GetContainerNumSlots(bag),1 do local name=GetContainerItemLink(bag,slot) if name and string.find(name,"Nerubian Legguards") then DEFAULT_CHAT_FRAME:AddMessage("- Vendor buys "..name) UseContainerItem(bag,slot) end end end
With this, you buy all the leather on the AH you can find, grab it from your mailbox, stand at a vendor, then just press 1 macro, then the other.
This doesn't make me insane amounts of money like some people manage, but it does mean I have a steady income (3k-ish per week) that just requires me to spend 2 minutes in the AH whenever I come through stormwind and occasionally spamming my 'Buying Borean Leather' macro.
These macros can easily be edited for other tradeskills/items.